作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 Laravel 项目的前端从 vue 2 升级到 Vue 3。在这个过程中,我遇到了一个问题
Uncaught TypeError: Vue.use is not a function
我不知道是什么问题,如果你有任何想法,请帮助我。谢谢。
最佳答案
Vue.use
在 Vue3 中不再受支持,因为 Vue
不再是全局实例。您必须将插件添加到应用程序:
const app = createApp(MyApp)
app.use(VueRouter)
如这里所述: https://v3-migration.vuejs.org/breaking-changes/global-api.html#a-note-for-plugin-authors
关于laravel - Vue 3,Uncaught TypeError : Vue. use is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69276676/
我是一名优秀的程序员,十分优秀!