作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Vue2 中,我能够访问我的 Vue 实例以使用在 Vue 中注册的组件。
测试.js
import Vue from 'vue'
export function renderLogin () {
Vue.toasted.show('Please login again', { type: 'error', duration: 2000 })
}
在上面的代码中,我可以访问 toasted 包,因为我已经在我的 main.js 中使用 Vue 注册了它。但是,在 Vue3 中,我无法使用 toasted 包,因为我无法访问 js 文件中的 Vue 实例。
最佳答案
经过一天的搜索,我能够从 js 文件中的 vue 实例访问 toasted 组件。
首先,我们必须导出应用程序实例才能在 js 文件中读取它
main.js
export const app = createApp({
render() {
return h(AppWrapper);
},
});
接下来,我们必须在应用实例的 globalProperties 中注册我们的组件。
app.config.globalProperties.$toast = toast;
我们现在可以在我们的 js 文件中导入应用程序实例并访问 toast 组件
import { app } from '@/main.js'
app.config.globalProperties.$toast('Toast working fine', {
type: 'success',
duration: 2000,
})
希望这可以帮助某人。如果有其他/更好的方法,请告诉我。谢谢
关于javascript - 如何在 Vue3 的 js 文件中访问 Vue 实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68632488/
我是一名优秀的程序员,十分优秀!