App.vue 229 Bytes
Newer Older
Pan's avatar
Pan committed
1 2 3 4 5 6 7 8 9 10 11
<template>
  <div id="app">
    <router-view></router-view>
  </div>
</template>

<script>
export default {
  name: 'app'
}
</script>
Pan's avatar
Pan committed
12 13 14 15
<style lang="scss">
  @import './styles/index.scss'; // 全局自定义的css样式
</style>

Pan's avatar
Pan committed
16