我对vue.js很陌生,但是我可以弄清楚一些事情。我从普通的js开始,但现在切换到带有类样式vue组件的typescript。对于组件样式,我使用bootstrap-vue。
在我的main.ts文件中,我导入了引导程序以及vuex存储
...
import BootstrapVue from 'bootstrap-vue'
//use custom bootstrap styling
import '../src/bootstrap/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.use(BootstrapVue)
...//some more code
new Vue({
router,
store,
i18n,
render: h => h(App)
}).$mount('#app')
在商店中,我动态注册一个NotificationModule
NotificationModule.ts
//import node modules
import { Module, VuexModule, Mutation, Action } from "vuex-module-decorators";
import { store } from "@/store";
//import application modules
import i18n from '@/i18n';
import Notification from '../types/Notification';
import Message from '../types/Message';
import logger from '@/system/logger';
@Module({
dynamic: true,
store: store,
name: "notification",
namespaced: true,
})
export default class NotifcationModule extends VuexModule {
//notification types definition with according prompts
notificationTypes: Array<string> = ['info', 'success', 'warning', 'danger'];
//definition of the notification object
notification: Notification = {
variant: '',
prompt: '',
message: ''
}
/**
* prove the supported notification types
*/
get getSupportedNotificationTypes(): Array<string> {
return this.notificationTypes;
}
/**
* provide the notification
*/
get getNotification(): Notification {
return this.notification;
}
@Action
notify(msg: Message){
logger.warn(`called notify with [type:${msg.variant}]:[text:${msg.text}]`);
if(msg.variant === undefined || !Array.from(this.notificationTypes).includes(msg.variant)){
msg.variant = 'info';
}
//configure custom notification data
const notification = {
variant: msg.variant,
prompt: i18n.t(`notify.${msg.variant}`),
message: msg.text || 'No message provided.'
}
this.context.commit('setNotification', notification);
}
@Mutation
public setNotification(data: Notification) {
if (data) {
this.notification = data;
}
}
}
一切正常。我可以在产生通知的vue组件中获得此商店的实例,但是在以下vue组件中创建烤面包,我遇到了问题。
Notification.vue
<template>
<b-container></b-container>
</template>
<script lang="ts">
import { Component, Vue, Watch } from 'vue-property-decorator';
import { getModule, VuexModule } from 'vuex-module-decorators';
import NotificationModule from '../../util-notification/components/NotificationModule';
import Notification from '../types/Notification';
import logger from '../../../system/logger';
@Component
export default class UserNotification extends Vue {
//get the instance of the NotificationModule
noticationInstance: NotificationModule = getModule(NotificationModule);
//watch the property 'notification' -> accessed via getter method
@Watch('noticationInstance.getNotification')
onPropertyChange(notification: Notification, oldValue: string) {
logger.debug(`replaced [${JSON.stringify(oldValue)}] by [${JSON.stringify(notification)}]`);
//create a toast
this.$bvToast.toast(notification.message, {
title: notification.prompt || 'Info',
variant: notification.variant || 'warning',
solid: true
});
}
}
</script>
在此文件Vetur尽管编译了但仍给我以下错误。但是没有制作和展示烤面包。
类型“ UserNotification”上不存在属性“ $ bvToast”。Vetur(2339)
我创建了一个TestView,以不同的方式集成了$ bvToast,并且可以正常工作。
<template>
<b-container fluid>
<h1>This is the page for testing components and functionality</h1>
<hr>
<div>
<h3>Trigger für vuex notification test</h3>
<b-button @click="$bvToast.show('example-toast')" class="mb-2">Default</b-button>
</div>
<b-toast id="example-toast" title="BootstrapVue" static no-auto-hide>
Hello, world! This is a toast message.
</b-toast>
</b-container>
</template>
您对我做错了什么建议吗? 谢谢你
问题已解决或更有效
我真的不知道为什么,但是现在可以了!无需进一步更改。抱歉,我无法重现此内容。而且webconsole也不会显示任何错误。
所以看来我可以在UserNotification组件中访问vue实例。 UserNotification扩展了Vue,因此它是Vue实例而不是VueX。答案中描述的解决方案不是必需的。
是否只有Vetur不能将$ vbToast识别为UserNotification的属性,甚至无法识别打字稿上下文中的扩展Vue实例?
答案 0 :(得分:4)
VueX的this
上下文不是Vue实例,因此this.$bvToast
无法直接使用。
但是,有一种解决方法可以访问VueX中的主要Vue实例。请改用this._vm.$bvToast
。
请参阅: