Vue.js(part1) 처음 사용
4531 단어 JavaScriptVue.jstech
로컬 환경js 설치
vue.js 공식 사이트https://cli.vuejs.org/guide/installation.html)。
npm install -g @vue/cli
vue create hello_world
아주 좋아요.js가 GUI에서 프로젝트를 수행하기 때문에 그 모형을 볼 수도 있고 GUI에서 프로젝트를 만들 수도 있기 때문에 초보자라도 걸려 넘어지지 않습니다.
vue ui
GUI를 사용하지 않으려는 경우npm run serve
를 참고하십시오.구성 요소
Vue.js에서 React처럼 구성 요소를 만들면 여러 번 재사용할 수 있습니다.
vue create hello_world
에서 프로젝트를 만들 때 생성된 폴더 내의 App.vue 및 src
폴더 내의 src/components
섹션입니다.HelloWorld.vue
폴더에서 src/components
이름으로 만듭니다.<template>
<div>
HTML要素
</div>
</template>
<script>
スクリプト関係
</script>
<style scoped>
CSS関係
</style>
名前.vue
라벨에 <script></script>
라고 쓰고, export default{}
에 {}
라고 기술한다.예제export default {
methods: {
print_something: function() {
console.log("Something");
<button v-on:click="print_something">print!</button>
Reference
이 문제에 관하여(Vue.js(part1) 처음 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/kyohei1212/articles/4fa7be440061f8b4c975텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)