Add new route
This commit is contained in:
parent
40ab4243b8
commit
300f93e1d2
|
|
@ -155,6 +155,6 @@ new Vue({
|
|||
el: '#app',
|
||||
store,
|
||||
router,
|
||||
provide: apolloProvider.provide(),
|
||||
apolloProvider,
|
||||
render: h => h(App),
|
||||
});
|
||||
|
|
|
|||
|
|
@ -0,0 +1,19 @@
|
|||
<template>
|
||||
<div class="create-content-block">
|
||||
<h1 class="heading-1">Hello Velo</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '~styles/helpers';
|
||||
|
||||
.create-content-block {
|
||||
|
||||
}
|
||||
</style>
|
||||
|
|
@ -7,6 +7,7 @@ import {
|
|||
VISIBILITY_PAGE,
|
||||
} from '@/router/module.names';
|
||||
import {LAYOUT_SIMPLE} from '@/router/core.constants';
|
||||
import createContentBlock from '@/pages/createContentBlock';
|
||||
|
||||
const moduleBase = () => import(/* webpackChunkName: "modules" */'@/pages/module/module-base');
|
||||
const module = () => import(/* webpackChunkName: "modules" */'@/pages/module/module');
|
||||
|
|
@ -69,7 +70,14 @@ export default [
|
|||
meta: {
|
||||
layout: LAYOUT_SIMPLE,
|
||||
hideNavigation: true,
|
||||
fullWidth: true
|
||||
fullWidth: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'create-content-block',
|
||||
component: createContentBlock,
|
||||
meta: {
|
||||
showFooter: false
|
||||
},
|
||||
},
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue