App.vue 189 B

123456789101112131415161718
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. .block{
  13. display: block;
  14. text-align: center;
  15. }
  16. </style>