2019-07-15 08:58:03 +00:00
|
|
|
<template>
|
2019-08-26 16:15:41 +00:00
|
|
|
<div id="q-app">
|
2019-07-15 08:58:03 +00:00
|
|
|
<router-view />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2019-08-12 15:48:04 +00:00
|
|
|
<script>
|
2019-08-26 16:15:41 +00:00
|
|
|
import { APP } from './_helpers/APP'
|
|
|
|
|
2019-08-12 15:48:04 +00:00
|
|
|
export default {
|
2019-08-26 16:15:41 +00:00
|
|
|
name: 'App',
|
|
|
|
beforeCreate () {
|
|
|
|
// Set vue instance
|
|
|
|
APP.vue = () => this.$root
|
|
|
|
|
|
|
|
// debug
|
|
|
|
console.log('Quasar -> ', this.$q.version)
|
2019-08-12 15:48:04 +00:00
|
|
|
}
|
2019-08-26 16:15:41 +00:00
|
|
|
}
|
2019-08-12 15:48:04 +00:00
|
|
|
</script>
|
|
|
|
|
2019-08-26 16:15:41 +00:00
|
|
|
<style>
|
2019-07-15 08:58:03 +00:00
|
|
|
</style>
|