Dative.JS 튜토리얼
2583 단어 webdevjavascriptdativejstutorial
소개
DativeJs는 Mordern Ui Javascript 프레임워크입니다.
Dative.J를 사용하는 방법
첫 번째
비계 A 프로젝트
$ npx degit dativeJs/template my-app
# Install All The Dependencies
$ npm i
해당 명령은 Dative.JS를 사용하여 템플릿을 생성해야 합니다.
새 구성 요소를 만드는 동안 파일 구조를 고려해야 합니다.
my-app
|- src
|- your-component
|- your-component.dative.html // The Template
|- your-component.dative.js // The Script
// your-component.dative.js
import Dative from 'dativejs';
import template from './your-component.dative.html';
export let YourComponent = Dative.extend({
template,
// Other Options Goes Here
})
그런 다음 src/index.js에서 가져올 수 있습니다.
import { YourComponent } from './your-component/your-component.dative'
...
app.attach([
...,
new YourComponent({
el: '#your-component-id'
})
])
당신이 설정
자세한 내용은 DativeJS Docs을 확인하세요.
읽어 주셔서 감사합니다 :)
Reference
이 문제에 관하여(Dative.JS 튜토리얼), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tobithealpha/dativejs-tutorial-1ido텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)