我想将模板代码放到另一个文件中,我不能使用vue CLI,我只是在使用简单版本的vue。
这不起作用
Vue.component('header-app', {
template: require('./components/header.html')
})
在什么地方起作用
Vue.component('header-app', {
template: ` <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>`
})
但是我的模板代码会很大,因此最好放到单独的文件中。
我一直在阅读论坛等内容,但仍然没有真正的答案,记住,我不能使用Vue Cli,只能使用vue.js