gpt4 book ai didi

Vue.js 3 - 尝试构建具有 2 种布局的系统

转载 作者:行者123 更新时间:2023-12-04 08:32:35 25 4
gpt4 key购买 nike

我是vue.js的初学者(3)
我尝试构建一个具有 2 个布局的系统:

  • 1 连接用户
  • 1 对于未连接的用户

  • 在我的 router/index.js 中,我为每个路由添加了一个元数据:
     const routes = [
    {
    path: '/',
    name: 'Home',
    meta: { layout: 'layout-connected' },
    component: Home
    },
    {
    path: '/myspace',
    name: 'MySpace',
    meta: { auth: true },
    component: MySpace
    }
    ]
    在我的 App.vue 中,我决定使用哪种布局 (参见 ":is="layout") :
    <template>
    <div id="app">
    <component :is="layout">
    <router-view/>
    </component>
    </div>
    </template>

    <script>
    const defaultLayout = 'layout-not-connected'

    export default {
    computed: {
    layout () {
    console.log(this.$route.meta.layout)
    return (this.$route.meta.layout || defaultLayout)
    }
    },
    至少,在我的布局中,我有:
    <template>
    <div class="container-fluid">
    <div class="row essai">
    <h1>layout non connected</h1>
    <slot />
    </div>
    </div>
    </template>
    当我 console.log 要应用哪个路由时,它工作正常:我在控制台中有正确的布局。
    但我从来没有看到布局(例如标签)。只有组件。
    我理解这个概念了吗?我的错误是什么?
    谢谢

    最佳答案

    布局是应该使用以下命令在 main.js 中全局注册的组件:

    app.component('layout-name',theLayoutComponent)
    或在本地 components选项 :
    <template>
    <div id="app">
    <component :is="layout">
    <router-view/>
    </component>
    </div>
    </template>

    <script>
    const defaultLayout = 'layout-not-connected'
    import LayoutConnected from 'path/to/LayoutConnectedComponent'
    import DefaultLayout from 'path/to/DefaultLayout Component'
    export default {
    components:{
    DefaultLayout,LayoutConnected
    },
    computed: {
    layout () {
    console.log(this.$route.meta.layout)
    return (this.$route.meta.layout || defaultLayout)
    }
    },

    关于Vue.js 3 - 尝试构建具有 2 种布局的系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64951947/

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