javascript 显示VUE CDN

wvt8vs2t  于 2023-04-28  发布在  Java
关注(0)|答案(1)|浏览(94)

我无法使用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

iovurdzv

iovurdzv1#

我不是100%确定你想实现什么,但对我来说,为你的模板提供的字符串应该用双引号包围单引号:

const Gallery = { template: "{{$t('gallery')}} <img :class='[[item.class]]' v-for='(item, index) in carousel' :src='[[item.img]]' alt='img' />" }

你能提供更多的背景吗?错误输出等...

相关问题