微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Vue 3 TypeError猫头鹰轮播

如何解决Vue 3 TypeError猫头鹰轮播

我目前正在使用打字稿在 vue 3 中工作。 我想使用 vue owl 库 (https://www.npmjs.com/package/vue-owl-carousel)。

但是,我收到一条消息,我需要声明它,我按如下操作:

tsconfig.json

"compilerOptions": {
    ...
  "include": [
    ...
    "src/owl/index.d.ts"
  ],...
  }

owl index.d.ts

declare module "vue-owl-carousel";

vue 组件

<template>
  <div class="hello">
    <carousel>
      <img src="https://placeimg.com/200/200/any?1">
      <img src="https://placeimg.com/200/200/any?2">
      <img src="https://placeimg.com/200/200/any?3">
      <img src="https://placeimg.com/200/200/any?4">
    </carousel>
  </div>
</template>

<script lang="ts">
import { Options,Vue } from "vue-class-component";

import carousel from "vue-owl-carousel";

@Options({
  components: {
    carousel
  }
})
...
</script>

当我打开页面时,我得到一个空白页面,并且在控制台中出现此错误

enter image description here

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。