2021-12-09 16:02:39 +01:00
|
|
|
import { ZeroPlugin, ZeroPluginOptions } from '../../core';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "zero.settings",
|
|
|
|
|
|
|
|
|
|
install(app: ZeroPluginOptions)
|
|
|
|
|
{
|
2021-12-21 15:51:26 +01:00
|
|
|
app.route({ name: 'settings', path: '/settings', component: () => import('./settings.vue') });
|
2021-12-26 01:42:21 +01:00
|
|
|
app.route({ name: 'demo', path: '/settings/demo', component: () => import('./demo.vue') });
|
|
|
|
|
|
|
|
|
|
app.schema('demo', () => import('./demo'));
|
2021-12-09 16:02:39 +01:00
|
|
|
}
|
|
|
|
|
} as ZeroPlugin;
|