이 글에서는 Vue 컴포넌트 세 가지의 글쓰기 형식을 주로 소개하는데, 관심 있는 친구들이 참고하면 도움이 될 것 같습니다.
첫 번째스크립트 태그 사용
<!DOCTYPE html> <html> <body> <p id="app"> <my-component></my-component> </p> <-- 注意:使用<script>标签时,type指定为text/x-template,意在告诉浏览器这不是一段js脚本,浏览器在解析HTML文档时会忽略<script>标签内定义的内容。--> <script type="text/x-template" id="myComponent">//注意 type 和id。 <p>This is a component!</p> </script> </body> <script src="js/vue.js"></script> <script> //全局注册组件 Vue.component('my-component',{ template: '#myComponent' }) new Vue({ el: '#app' }) </script> </html>
두 번째템플릿 태그 사용
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <p id="app"> <my-component></my-component> </p> <template id="myComponent"> <p>This is a component!</p> </template> </body> <script src="js/vue.js"></script> <script> Vue.component('my-component',{ template: '#myComponent' }) new Vue({ el: '#app' }) </script> </html>
세 번째단일 파일 컴포넌트
이 방법은 일반적으로 vue 단일 페이지 응용 프로그램에서 사용됩니다. 자세한 내용은 공식 홈페이지를 참고해주세요: https://cn.vuejs.org/v2/guide/single-file-comComponents.html
접미사가 .vue인 파일을 생성하고 Hello.vue 컴포넌트를 배치한 후 배치하세요. 구성 요소 폴더에
<template> <p class="hello"> <h1>{{ msg }}</h1> </p> </template> <script> export default { name: 'hello', data () { return { msg: '欢迎!' } } } </script>
app.vue
<!-- 展示模板 --> <template> <p id="app"> <img src="./assets/logo.png"> <hello></hello> </p> </template> <script> // 导入组件 import Hello from './components/Hello' export default { name: 'app', components: { Hello } } </script> <!-- 样式代码 --> <style> #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style>
관련 권장 사항:
에 vue 구성 요소 게시 vue2.0 데이터 양방향 바인딩 및 양식 부트스트랩+vue 구성 요소
위 내용은 Vue 구성요소의 세 가지 작성 형식에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!