20 lines
239 B
Vue
20 lines
239 B
Vue
<template lang="pug">
|
|
#app
|
|
router-view
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {}
|
|
},
|
|
async created () {
|
|
},
|
|
components: {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
@import "~@less/utils/normalize.less";
|
|
</style>
|