zoukankan      html  css  js  c++  java
  • vue路由的二次封装

    路由的二次封装
    var routes = [
        {
            path: "/attendance",
            component: () => import('../pages/Attendance')
        },
        {
            path: "/identify",
            component: () => import('../pages/Identify')
        },
        {
            path: "/",
            redirect: "/attendance"
        },
    ]
    // 获取路由信息方法
    let getRoutes = function() {
    	// 自动生成路由
    	createRoute(routes)
    	return routes
    }
    // 自动生成路由
    function createRoute(arr) {
    	for (let i = 0; i < arr.length; i++) {
    		if (!arr[i].component) return
    		// 自动生成component
    		let componentFun = import(`../views/${arr[i].component}.vue`)
    		arr[i].component = () => componentFun
    		if (arr[i].children && arr[i].children.length > 0) {
    			createRoute(arr[i].children)
    		}
    	}
    }
    export default getRoutes()
  • 相关阅读:
    SHELL[22]
    SHELL[15]
    SHELL[08]
    SHELL[12]
    SHELL[06]
    SHELL[24]
    SHELL[11]
    shell文件合并、去重
    SHELL[25]
    SHELL[14]
  • 原文地址:https://www.cnblogs.com/cupid10/p/15617619.html
Copyright © 2011-2022 走看看