23 lines
311 B
Vue
23 lines
311 B
Vue
<style scoped>
|
|
@import 'styles/common.css';
|
|
</style>
|
|
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {}
|
|
},
|
|
mounted () {
|
|
|
|
},
|
|
beforeDestroy () {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|