22 lines
331 B
Vue
22 lines
331 B
Vue
<template>
|
|
<v-container>
|
|
<v-row>
|
|
<v-col>
|
|
<v-card flat class="ma-0 pa-0">
|
|
<p class="headline">Welcome Pages</p>
|
|
</v-card>
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.centre-text {
|
|
text-align: center;
|
|
}
|
|
</style>
|