import customTableView from './pages/list-view.vue'
export default  {

    routes: {
        customTableView:{
            path: 'customTableView',
            name: 'customTableView',
            content:true,
            meta: {
                title: '自定义表格'
            },
            component:customTableView,
        }
    }
}