Skip to content
Snippets Groups Projects
App.vue 247 B
Newer Older
  • Learn to ignore specific revisions
  • Pan's avatar
    Pan committed
    <template>
        <div id="app">
            <router-view></router-view>
        </div>
    </template>
    
    <script>
        export default{
          name: 'APP'
        }
    </script>
    
    Pan's avatar
    Pan committed
    
    <style lang="scss">
      @import './styles/index.scss'; // 全局自定义的css样式
    </style>