20 lines
306 B
Vue
20 lines
306 B
Vue
|
<template lang='pug'>
|
||
|
v-container(fluid, fill-height)
|
||
|
v-layout(row wrap)
|
||
|
v-flex(xs12)
|
||
|
.headline.blue--text.text--darken-2 Dashboard
|
||
|
.subheading.grey--text Coming soon
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang='scss'>
|
||
|
|
||
|
</style>
|