guigu-oa-admin/src/App.vue

17 lines
229 B
Vue
Raw Normal View History

2017-06-26 13:38:24 +08:00
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'app'
}
</script>
2017-06-30 11:01:04 +08:00
<style lang="scss">
@import './styles/index.scss'; // 全局自定义的css样式
</style>
2017-06-26 13:38:24 +08:00