我无法使用CDN显示v-for
const Gallery = { template: '{{$t('gallery')}} <img :class="[[item.class]]" v-for="(item, index) in carousel" :src="[[item.img]]" alt="img" />' }
const routes = [
{ path: '/', component: Gallery }
];
// CDN app.use(i18n);
// CDN app.use(router)
// CDN app.mount("#app");
我无法使用Vue View CDN显示以下v-for
1条答案
按热度按时间iovurdzv1#
我不是100%确定你想实现什么,但对我来说,为你的模板提供的字符串应该用双引号包围单引号:
你能提供更多的背景吗?错误输出等...