| 12345678910111213141516171819202122232425 |
- <template>
- <div id="app">
- <MyLogin />
- </div>
- </template>
- <script>
- import MyLogin from './components/MyLogin.vue';
- export default {
- name: 'App',
- components: { MyLogin },
- };
- </script>
- <style>
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- margin-top: 60px;
- }
- </style>
|