各位好,实例代码如下
<div id="watch-example"> <hello-world></hello-world> </div> <script type="text/x-template" id="hello-world-template"> <p>Hello World</p> </script> <script type="text/javascript"> Vue.component("hello-world", { template: "#hello-world-template" }); var vm = new Vue({ el: "#watch-example" }) </script>
我想将组件做成公共组件,然后通过引用js的方式来进行模板注册。
但是,如果将Vue.component单独提取js文件,它的模板x-template,创建不了
请问我能否有办法把,这个模板单独提取到一个文件里面呢?
除了单文件组件,没有其他办法。结贴