App.vue 448 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div id="app">
  3. <TodoList />
  4. </div>
  5. </template>
  6. <script>
  7. import TodoList from './components/TodoList.vue';
  8. export default {
  9. name: 'App',
  10. components: { TodoList },
  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. ul,
  23. li {
  24. list-style: none;
  25. }
  26. </style>