app.vue
461 Bytes
<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>