style migrate v3

pull/289/head
vapao 2020-11-29 23:36:40 +08:00
parent 7b0682a0fe
commit a8db60345c
2 changed files with 0 additions and 27 deletions

View File

@ -1,12 +0,0 @@
/**
* Copyright (c) OpenSpug Organization. https://github.com/openspug/spug
* Copyright (c) <spug.dev@gmail.com>
* Released under the AGPL-3.0 License.
*/
import { makeRoute } from "../../libs/router";
import Index from './index';
export default [
makeRoute('', Index),
]

View File

@ -1,15 +0,0 @@
/**
* Copyright (c) OpenSpug Organization. https://github.com/openspug/spug
* Copyright (c) <spug.dev@gmail.com>
* Released under the AGPL-3.0 License.
*/
import { makeRoute } from 'libs/router';
import Account from './account';
import Setting from './setting';
import Role from './role';
export default [
makeRoute('/account', Account),
makeRoute('/role', Role),
makeRoute('/setting', Setting),
]