问题:
<!---->
设置:
gulp.src('./node_modules/vue/dist/vue.min.js')
.pipe(gulp.dest('./wwwroot/dist/'))
<script src="~/dist/vue.min.js" asp-append-version="true"></script>
<template>
。在后者中,只有一个显示。 <template id="paging-template"></template>
<template id="modal-template"></template>
Vue.component('modal',{ template:'#modal-template'});
Vue.component('paging',{ template:'#paging-template'});
使用<modal></modal>
调用模态,使用<paging></paging>
调用。
模态显示正确。分页显示为<!---->
,但在Chrome中使用Vue调试器插件我可以看到模型,Paging组件的所有内容都在那里。
我错过了什么?
编辑: JSFiddle Link
这个css不是我的,只是他们提供的Vue模板的默认值