vue3 VueRouter路由不显示,有报错

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

index.js

image.png

Index.vue
image.png

vue warn
image.png

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

阅读 7.7k
2 个回答
<router-view></router-view>
//改为
<router-view v-slot="{ Component }">
  <component :is="Component"/>
</router-view>

你试一下我这个代码是可以正常运行的,你的不行的话,我才大概是浏览器不支持 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>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏