首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >类星体2:在证监会中使用v-纹波指令,定义为<script setup>

类星体2:在证监会中使用v-纹波指令,定义为<script setup>
EN

Stack Overflow用户
提问于 2022-05-29 18:57:24
回答 1查看 339关注 0票数 3

我正在尝试类星体v2.7.1框架(使用Vue 3、TypeScript、Pinia和路由器),并希望使用语法来定义SFCs如何在正式的Vue 3文档中重新组合。但是,一旦我改变组件中任何元素的v-纹波指令,我就会面临以下错误:

TypeError:无法在updateModifiers (Ripple.js?v=eddf1594:65:45)、beforeMount (Ripple.js?v=eddf1594:112:9)、callWithErrorHandling (运行时-core.esm-bundler.js:155:22)、callWithAsyncErrorHandling (运行时-core.esm-bundler.js:164:21)、invokeDirectiveHook (运行时-core.esm-bundler.js:2791:13)、mountElement (运行时-core.esm-bundler.js:5180:13)、processElement (运行时-core.esm-bundler.js:5180:13)处读取未定义的属性。.js:5110:13) at修补程序(运行时-core.esm-bundler.js:5030:21) at ReactiveEffect.componentUpdateFn as fn at ReactiveEffect.run (reactivity.esm-bundler.js:185:25)

如果v波纹指令被删除,问题就不会再次出现。

要再现,只需将默认类星体样板的EssentialLink.vue组件更改为

代码语言:javascript
运行
复制
    <template>
     <q-item clickable tag="a" target="_blank" v-ripple>
        <q-item-section v-if="icon" avatar>
          <q-icon :name="props.icon" />
        </q-item-section>
    
        <q-item-section>
          <q-item-label>{{ title }}</q-item-label>
          <q-item-label caption>{{ caption }}</q-item-label>
        </q-item-section>
      </q-item>
    </template>
    
    <script setup lang="ts">
    const props = defineProps<{
      title: string;
      caption: string;
      link: string;
      icon: string;
    }>();
    </script>

问题是:这是我的错吗?我必须在某种程度上解决这个问题。还是窃听器?

EN

回答 1

Stack Overflow用户

发布于 2022-06-11 09:05:14

我也有过这个问题,正如@ to 19建议的那样,我刚刚将其降级为vue@3.2.31,它起作用了。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/72426489

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档