iview/test/components/app.vue

28 lines
461 B
Vue
Raw Normal View History

2016-09-09 14:29:19 +08:00
<style lang="less">
@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() {
},
beforeDestroy: function() {
},
methods: {
}
}
</script>