我正在尝试从 Buefy 访问 Toast 组件,以在每次有人尝试访问仅身份验证视图时显示错误:
// ...
import { Toast } from 'buefy/dist/components/toast'
router.beforeEach((to, from, next) => {
// ...
if (to.matched.some(record => record.meta.requiresAuth)) {
if (!(store.state.isAuth)) {
Toast.open({
message: "Not authorized"
});
next({
path: '/login/',
})
} else {
next()
}
} else {
next()
}
}
但是Toast
未定义,我确实已经Buefy
导入并Vue.use(Buefy)
编写了。
我该如何解决这个问题并在此处访问 Toast。提前致谢。