App.vue 424 B

123456789101112131415161718192021222324
  1. <template>
  2. <div id="app">
  3. <AdminUsers />
  4. </div>
  5. </template>
  6. <script>
  7. import AdminUsers from './components/AdminUsers.vue';
  8. export default {
  9. name: 'App',
  10. components: { AdminUsers },
  11. };
  12. </script>
  13. <style>
  14. #app {
  15. font-family: Avenir, Helvetica, Arial, sans-serif;
  16. -webkit-font-smoothing: antialiased;
  17. -moz-osx-font-smoothing: grayscale;
  18. text-align: center;
  19. color: #2c3e50;
  20. margin-top: 60px;
  21. }
  22. </style>