optimize project structure

This commit is contained in:
jingsam 2016-10-28 10:27:44 +08:00
parent 5b7fe51535
commit 4df4ea1911
9 changed files with 17 additions and 47 deletions

27
test/app.vue Normal file
View file

@ -0,0 +1,27 @@
<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>