【发布时间】:2020-09-30 06:51:30
【问题描述】:
我正在尝试使用 vue-agile carousel,我可以在安装后立即安装并让它运行而没有任何问题,我正在使用 NUXT,但是在重新启动我的服务器后,我一直收到这个错误并且找不到任何问题解决方案
<template>
<div>
<agile>
<div class="slide">
<img src="/img/img2.jpg" alt="" />
</div>
<div class="slide">
<img src="/img/img1.jpg" alt="" />
</div>
</agile>
</div>
</template>
<script >
import { VueAgile } from "vue-agile";
export default {
name: "",
layout: "",
middleware: [],
data() {
return {};
},
components: {
agile: VueAgile,
},
};
</script>
【问题讨论】:
-
你找到解决方案了吗?
标签: javascript vue.js nuxt.js