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
29
30
31
| <template>
| <div>
| <el-row :tag="id">
| <el-col :span="8"><div class="grid-content">title</div></el-col>
| <el-col :span="4" :offset="12"><div class="grid-content">time</div></el-col>
| </el-row>
| <el-row>
| <el-col :span="20"><div class="grid-content">desp</div></el-col>
| </el-row>
| </div>
| </template>
|
| <script>
| export default {
| data() {
| return {
| line:{
| id:"",
| title: "",
| desp: "",
| time:""
| }
|
| }
| },
|
| }
| </script>
|
| <style>
| </style>
|
|