vue-material/src/docs/pages/GettingStarted.vue

14 lines
249 B
Vue
Raw Normal View History

2016-07-22 04:45:15 +00:00
<template>
2016-09-26 14:14:26 +00:00
<single-page class="single-page-home" label="Getting Started" page-title="Getting Started">
</single-page>
2016-07-22 04:45:15 +00:00
</template>
2016-09-19 03:46:56 +00:00
<script>
export default {
mounted() {
2016-09-26 03:27:16 +00:00
this.$root.pageTitle = 'Getting Started';
2016-09-19 03:46:56 +00:00
}
};
</script>