gpt4 book ai didi

javascript - Vuejs - 路由器不会在应用程序中渲染第三个组件。前两个正在工作

转载 作者:行者123 更新时间:2023-11-28 17:31:00 25 4
gpt4 key购买 nike

我创建了我的第一个 Vue 应用程序,但路由器有问题。我有 3 个组件,前 2 个可以完美工作,但 3 个则不能。这是我的代码:

index.js

import Vue from 'vue'
import Router from 'vue-router'
import Homepage from '@/components/Homepage'
import Login from '@/components/Login'
import Register from '@/components/Register'

Vue.use(Router)

export default new Router({
mode: 'history',
routes: [
{
path: '/',
name: 'Homepage',
component: Homepage
},
{
path: '/account/login',
name: 'Login',
component: Login
},
{
path: '/account/register',
name: 'Register',
compontent: Register
}
]
})

Register.vue

<template>
<div class="hello">
<h2>This is test</h2>
</div>
</template>

<script>
import Vue from 'vue'
export default {
name: 'Register',
data () {
return {
username: '',
email: '',
password: ''
}
}
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1, h2 {
font-weight: normal;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>

我不知道我做错了什么。我尝试在登录路由中使用 Register.vue 并且它有效。我做错了什么?预先感谢您的帮助!

如果重要的话,我会通过 npm run dev 运行服务器。

最佳答案

将属性组件重命名为组件

关于javascript - Vuejs - 路由器不会在应用程序中渲染第三个组件。前两个正在工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50436155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com