15 lines
199 B
Vue
15 lines
199 B
Vue
<template>
|
|
<!-- Don't drop "q-app" class -->
|
|
<div id="q-app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/*
|
|
* Root component
|
|
*/
|
|
export default {}
|
|
</script>
|
|
|
|
<style></style>
|