2016-09-09 14:29:19 +08:00
|
|
|
<style lang="less">
|
2016-10-28 10:27:44 +08:00
|
|
|
@import "../src/styles/index.less";
|
|
|
|
@import "../src/styles/package.less";
|
2016-09-09 14:29:19 +08:00
|
|
|
</style>
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<router-view></router-view>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
module.exports = {
|
|
|
|
data: function() {
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ready: function() {
|
2016-10-28 10:27:44 +08:00
|
|
|
|
2016-09-09 14:29:19 +08:00
|
|
|
},
|
|
|
|
beforeDestroy: function() {
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
2016-10-28 10:27:44 +08:00
|
|
|
|
2016-09-09 14:29:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|