forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.vue
More file actions
28 lines (22 loc) · 763 Bytes
/
App.vue
File metadata and controls
28 lines (22 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<template>
<router-view />
</template>
<script>
import { useMeta } from 'quasar'
import { provideDocStore } from 'assets/doc-store.js'
import getMeta from 'assets/get-meta.js'
export default {
name: 'App',
setup () {
useMeta({
title: 'Quasar Framework',
titleTemplate: title => `${title} | Quasar Framework`,
meta: getMeta(
'Quasar Framework - Build high-performance VueJS user interfaces in record time',
'Developer-oriented, front-end framework with VueJS components for best-in-class high-performance, responsive websites, PWA, SSR, Mobile and Desktop apps, all from the same codebase. Sensible people choose Vue. Productive people choose Quasar. Be both.'
)
})
provideDocStore()
}
}
</script>