說說active-class是哪個組件的屬性


active-class是哪個組件的屬性

active-class是vue-router模塊的router-link組件中的屬性,用來做選中樣式的切換

 

在vue組件中怎么獲取到當前的路由信息

如果是template中獲取直接 $route 即可
如果是script中獲取 this.$route
可以 console.log(this.$route) 查看其詳細信息

 

路由重定向

路徑:{ path: '/a', redirect: '/b' }
命名的路由: { path: '/a', redirect: {name:'/foo'} }
動態重定向目標: { path: '/a', redirect: to => {
const {
  query,
  params,
  hash
} = to
  if (params.name) {
    return /${params.name}
  } else if (query.to && query.to === "bar") {
    return /${query.to}
  } else if (hash === '#baz') {
    return '/baz'
  }
  }
}

怎么實現路由懶加載

/* vue異步組件技術 */ { path: '/home', name: 'home', component: resolve => require(['@/components/home'],resolve) },{ path: '/index', name: 'Index', component: resolve => require(['@/components/index'],resolve) },{ path: '/about', name: 'about', component: resolve => require(['@/components/about'],resolve) } 


組件懶加載方案二 路由懶加載(使用import)
// 下面2行代碼,沒有指定webpackChunkName,每個組件打包成一個js文件。 /* const Home = () => import('@/components/home') const Index = () => import('@/components/index') const About = () => import('@/components/about') */ // 下面2行代碼,指定了相同的webpackChunkName,會合並打包成一個js文件。 把組件按組分塊 const Home = () => import(/* webpackChunkName: 'ImportFuncDemo' */ '@/components/home') const Index = () => import(/* webpackChunkName: 'ImportFuncDemo' */ '@/components/index') const About = () => import(/* webpackChunkName: 'ImportFuncDemo' */ '@/components/about')

{ path: '/about', component: About }, { path: '/index', component: Index }, { path: '/home', component: Home }


webpack提供的require.ensure()
vue-router配置路由,使用webpack的require.ensure技術,也可以實現按需加載。
這種情況下,多個路由指定相同的chunkName,會合並打包成一個js文件。
/* 組件懶加載方案三: webpack提供的require.ensure() */ { path: '/home', name: 'home', component: r => require.ensure([], () => r(require('@/components/home')), 'demo') }, { path: '/index', name: 'Index', component: r => require.ensure([], () => r(require('@/components/index')), 'demo') }, { path: '/about', name: 'about', component: r => require.ensure([], () => r(require('@/components/about')), 'demo-01') }
 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM