App_20220530172931.vue 405 B

12345678910111213141516171819202122232425
  1. <!--
  2. * @LastEditors: gcz
  3. -->
  4. <template>
  5. <div id="app">
  6. <dv-border-box-1>dv-border-box-1</dv-border-box-1>
  7. <router-view/>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'App'
  13. }
  14. </script>
  15. <style>
  16. #app {
  17. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. text-align: center;
  21. color: #2c3e50;
  22. }
  23. </style>