v0.7.2 完成所有界面布局. 逻辑暂未开始

This commit is contained in:
hunlongyu
2020-01-14 16:19:39 +08:00
parent 2bdaf70be1
commit ec6bc18fbf
12 changed files with 643 additions and 59 deletions

View File

@@ -1,10 +1,16 @@
<template>
<el-row class="detail"></el-row>
<el-row class="detail">detail</el-row>
</template>
<script lang="ts">
import Vue from 'vue'
export default Vue.extend({})
export default Vue.extend({
name: 'detail'
})
</script>
<style lang="scss" scoped>
.detail{
height: 100%;
box-sizing: border-box;
padding: 10px;
}
</style>