27 lines
431 B
Vue
27 lines
431 B
Vue
<style lang="less">
|
|
@import "../src/styles/index.less";
|
|
@import "../src/styles/package.less";
|
|
</style>
|
|
<template>
|
|
<div>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
data: function() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
ready: function() {
|
|
|
|
},
|
|
beforeDestroy: function() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|