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

在vue-js-model中未定义$ model.show返回模型

如何解决在vue-js-model中未定义$ model.show返回模型

当我单击$ model.show('demo-login')按钮时,控制台中始终出现以下错误

usersFollowSuccess: (state,action) => { const userId = action.payload._id; const filtered = state.data.filter((user) => { return user._id !== userId; }); return { ...state,data: [...filtered,action.payload].sort(sortFunc),// Here error: false,loaded: true,}; },

单击按钮即可获得完整输出

TypeError: Cannot read property 'show' of undefined

我的代码

product.vue

TypeError: Cannot read property 'show' of undefined
    at click (product.vue?1da5:1)
    at ie (vue.runtime.esm.js:1854)
    at HTMLButtonElement.i (vue.runtime.esm.js:2179)
    at HTMLButtonElement.Jr.a._wrapper (vue.runtime.esm.js:6917)
re @ vue.runtime.esm.js:1888
ne @ vue.runtime.esm.js:1879
ee @ vue.runtime.esm.js:1839
ie @ vue.runtime.esm.js:1862
i @ vue.runtime.esm.js:2179
Jr.a._wrapper @ vue.runtime.esm.js:6917

Main.js

<template>
    <div class="app">
        <demo-login-modal/>
        <button @click="$model.show('demo-login')">PP</button>
    </div>
</template>

<script>
import DemoLoginModal from '@/components/Modal_Login.vue';
export default {
  name: 'product',components: {
    DemoLoginModal,},};
</script>

Model_login副本中的弹出窗口

GitHub问题:https://github.com/euvl/vue-js-modal/issues/609

解决方法

我不确定,但我想你在这里打错了

<button @click="$model.show('demo-login')">PP</button>

更改为

<button @click="$modal.show('demo-login')">PP</button>

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