vue3 VueRouter路由不显示,有报错

发布于 2022-09-12 23:15:33 字数 445 浏览 13 评论 0

使用vue3实现一个简单demo,router-view不显示
html
image.png

index.js

image.png

Index.vue
image.png

vue warn
image.png

页面
image.png
求大佬,帮忙看下怎么回事,代码基本按照vue文档写的

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

碍人泪离人颜 2022-09-19 23:15:33
<router-view></router-view>
//改为
<router-view v-slot="{ Component }">
  <component :is="Component"/>
</router-view>
别忘他 2022-09-19 23:15:33

你试一下我这个代码是可以正常运行的,你的不行的话,我才大概是浏览器不支持 inport 的写法!

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="https://unpkg.com/vue@next"></script>
    <script src="https://unpkg.com/vue-router@4"></script>
</head>
<body>
    <div id="app">
        <p>{{ msg }}</p>
        <router-view></router-view>
    </div>
    <script>
        const options = {
            data () {
                return {
                    msg: 'Hello world'
                }
            }
        }
        const router = VueRouter.createRouter({
            history: VueRouter.createWebHashHistory(),
            routes: [
                {path: '/', component: { template: '<div>Home</div>' } }
            ]
        })
        var app = Vue.createApp(options)
        app.use(router)
        app.mount('#app')
    </script>
</body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文