123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- </style>
- </head>
- <body>
- <div id="app">
- <my-com></my-com>
- <my></my>
- </div>
- <script src="./vue.js"> </script>
- <script>
-
- // 全局组件
- Vue.component("my-com",{
- template:`<div><h1>你好</h1><p>哈哈</p></div>`
- })
- // 局部组件
- const aaa = Vue.extend({
- template:`<div><h1>你好1</h1><p>哈哈1</p></div>`
- })
- var vm = new Vue({
- el: "#app",
- components:{
- my:aaa
- }
- })
- </script>
- </body>
- </html>
|