16

在 Vue 3 中,我创建了以下Home组件,另外 2 个组件(FooBar),并将其传递给vue-router如下所示。Home组件是使用 Vue 的component函数创建的,而组件FooBar使用普通对象创建的。

我得到的错误:

Component is missing template or render function.

在这里,Home组件导致了问题。我们不能将结果传递component()给路由对象vue-router吗?

<div id="app">
   <ul>
      <li><router-link to="/">Home</router-link></li>
      <li><router-link to="/foo">Foo</router-link></li>
      <li><router-link to="/bar">Bar</router-link></li>
   </ul>
   <home></home>
   <router-view></router-view>
</div>

<script>
   const { createRouter, createWebHistory, createWebHashHistory } = VueRouter
   const { createApp } = Vue
   const app = createApp({})

   var Home = app.component('home', {
      template: '<div>home</div>',
   })

   const Foo = { template: '<div>foo</div>' }
   const Bar = { template: '<div>bar</div>' }

   const router = createRouter({
      history: createWebHistory(),
      routes: [
        { path: '/', component: Home },
        { path: '/foo', component: Foo },
        { path: '/bar', component: Bar },
      ],
    })

    app.use(router)

    app.mount('#app')
</script>

请参阅代码沙箱中的问题。

4

4 回答 4

12

app.component(...)提供定义对象(第二个参数)时,它返回应用程序实例(以允许链接调用)。要获取组件定义,请省略定义对象并仅提供名称:

app.component('home', { /* definition */ })
const Home = app.component('home')

const router = createRouter({
  routes: [
    { path: '/', component: Home },
    //...
  ]
})

演示

于 2020-10-18T02:53:44.007 回答
7

对于 vue-cli vue 3

createApp 中缺少渲染功能。使用 createApp 函数设置您的应用程序时,您必须包含包含 App 的渲染函数。

在 main.js 中更新为:

首先将javascript 中的第二行更改为:-

const { createApp } = Vue

到以下几行:

import { createApp,h } from 'vue'
import App from './App.vue'

第二

更改自:-

const app = createApp({})

至:

const app  = createApp({
    render: ()=>h(App)
});


app.mount("#app")
于 2021-05-02T05:49:12.420 回答
1

解决方案对我来说很简单,我创建了一个空组件,在填写模板和简单的文本 HTML 代码后,它就被修复了。

于 2021-05-19T08:03:03.877 回答
1

确保您已添加<router-view></router-view>到您的#app容器中。

于 2021-10-10T13:33:51.683 回答