1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <template>
| <the-form></the-form>
| </template>
|
| <script>
| import TheForm from './components/TheForm.vue';
|
| export default {
| components: {
| TheForm
| }
| }
| </script>
|
| <style>
| * {
| box-sizing: border-box;
| }
|
| html {
| font-family: sans-serif;
| }
|
| body {
| margin: 0;
| background-color: #292929;
| }
| </style>
|
|