Unable to render v-for with CDN in Vue.js
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");
Having difficulty displaying the v-for loop using Vue View CDN