用引入的方式(<script src="https://unpkg.com/vue"></script>)使用vue。在下面这个页面中,引入一个单组件,可以么,下面的代码有问题,要报错,无法正常执行。是不能这样引入单文件组件,还是说可以这样引入,只是要用system.js来挂载呢?谢谢~~
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <!DOCTYPE html> <html lang= "en" > <head> <meta charset= "UTF-8" > <title>Title</title> </head> <body> <div id= "example" > <component1></component1> </div> </body> <script src= "https://unpkg.com/vue" ></script> <script> //不能这样引入单文件组件么?因为我试了会报错。 或者是说可以这样引入,只是要用system.js来挂载? var component1 = require( './component1/component1.vue' ); var app = new Vue({ components:{component1} }); </script> </html> |
掌握Vue1.0到2.0再到2.5最全版本应用与迭代,打造极致流畅的WebApp
了解课程