App.vue 256 B

12345678910111213141516171819202122
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. provide() {
  10. return {
  11. reload: this.reload,
  12. }
  13. },
  14. }
  15. </script>
  16. <style lang="scss">
  17. @import '/iconfont/iconfont.css'
  18. </style>