routes.js
404 Bytes
var routes = [
// 首页
{
path: '/',
url: './index.html',
name: 'index'
},
// 2-1字语词义
{
path: '/word/',
url: './2-1字语词义.html',
name: 'word-home'
},
// 2-2字百科义
{
path: '/word-wiki/',
url: './2-2字百科义.html',
name: 'word-wiki'
},
// 专题
{
path: '/special/',
url: './专题.html',
name: 'special'
}
];