当前位置: 首页 > article >正文

vue路由两种数据类型引用

一、对象
小router.js

export default {
  path: '/meetingminutes/app',
  name: 'app',
  component: () => import('@/views/meetingMinutes/routerView.vue'),
  children: [
    {
      path: '/meetingminutes/list',
      name: 'list',
      component: () => import('@/views/meetingMinutes/list'),
      meta: {
        title: ''
      }
    },]
}

routerView.vue

<template>
    <div class="meetingMinutes">
        <div class="fir">
            <div class="firImbBox">
                <img class="img" src="@/views/meetingMinutes/imgs/PC-logo@2x.png" alt="">
            </div>
            <div class="text"></div>
        </div>
      <router-view  />
    </div>
  </template>

总router.js

import meetingMinutes from "@/views/meetingMinutes/router.js"

const routes = [
  {
    path: '/',
    name: 'home',
    component: () => import('../views/IntelligentQuery')
  },
 meetingMinutes 
]```
二、数组
小router.js

```javascript

var arr = [{
    path: '/meetBook/meetView',
    name: 'meetView',
    component: () => import('@/views/MeetBook/MeetView.vue'),
    meta: {
      title: ''
    }
  },
  {
    path: '/meetBook/listReservation',
    name: 'listReservation',
    component: () => import('@/views/MeetBook/list-reservation.vue'),
    meta: {
      title: ''
    }
  },
  ]
  export default arr

总router.js

import meetbook from "@/views/MeetBook/router.js"
const routes = [
  {
    path: '/',
    name: 'home',
    component: () => import('../views/IntelligentQuery')
  },
 ...meetbook 
]``


http://www.kler.cn/a/376983.html

相关文章:

  • Spring Boot教程之四十九:Spring Boot – MongoRepository 示例
  • C#语言的网络编程
  • UE 5.3 C++ 管理POI 如何对WidgetComponent 屏幕模式进行点击
  • Mysql 性能优化:索引条件下推(ICP)
  • 生成模型:变分自编码器-VAE
  • 大数据-268 实时数仓 - ODS层 将 Kafka 中的维度表写入 DIM
  • vue3中使用mqtt数据传输(封装)
  • 使用Postman进行API测试
  • 论文翻译 | Ignore Previous Prompt: Attack Techniques For Language Models
  • 【OD-支持在线评测】周末爬山(200分)
  • 移植 AWTK 到 纯血鸿蒙 (HarmonyOS NEXT) 系统 (2) - 移植 nanovg
  • 《深入浅出HTTPS​​​​》读书笔记(4):密码学
  • Flutter报错信息Unhandled Exception: Binding has not yet been initialized.
  • Facebook直播按钮缺失现象的深入分析
  • expand,None索引,permute【pytorch】
  • 数据结构之——选择树
  • leetcode hot100【LeetCode 322. 零钱兑换】java实现
  • Linux下Nginx的安装与使用
  • 红队-shodan搜索引擎篇
  • k8s 小版本升级
  • VS+Qt解决提升控件后,包含头文件格式不对问题处理
  • C++设计模式结构型模式———装饰模式
  • 房贷利率定价调整机制变更的一点理解
  • 数学建模学习(134):使用Python基于WISP的多准则决策分析
  • 练习LabVIEW第三十四题
  • 我们来学mysql -- 查询成本之索引选择(原理篇)