1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <template>
| <div class="main">
|
| </div>
| </template>
|
| <script lang="ts">
| // 这里编写ts代码
| let s:string = "123"
| console.log(s)
| </script>
|
| <style>
| .main {
| height: 100%;
| width: 100%;
| background-color: aquamarine;
| }
| </style>
|
|