12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div id="app">
- <haha></haha>
- <aa></aa>
- </div>
- <script src="./vue.js"></script>
- <script>
- // html => template
- // css
- // js
- // components
- /**
- * Vue.component('组件名',{
- * template`
- * 组件内容
- * `
- * })
- */
- // 1.全局组件
- Vue.component('haha',{
- template:`
- <h1>哈哈哈哈</h1>
- `
- })
- // 2.局部组件
- const blue = Vue.extend({
- template:`
- <ul>
- <li>aaa</li>
- <li>bbb</li>
- <li>ccc</li>
- </ul>
- `
- })
- var vm = new Vue({
- el: "#app",
- data: {
- msg: "哈哈哈"
- },
- components:{
- aa:blue
- }
- })
- </script>
- </body>
- </html>
|