perf: layout (#50)

This commit is contained in:
啝裳
2021-10-03 13:09:12 +08:00
committed by GitHub
parent 77b7abcbc3
commit 6b16a04229
14 changed files with 705 additions and 861 deletions

View File

@@ -1,3 +1,14 @@
<script setup lang="ts">
import { ref } from "vue";
const lists = ref<ForDataType<undefined>>([
{ type: "", label: "善良" },
{ type: "success", label: "好学" },
{ type: "info", label: "幽默" },
{ type: "danger", label: "旅游" },
{ type: "warning", label: "追剧" }
]);
</script>
<template>
<el-descriptions
class="margin-top"
@@ -75,17 +86,6 @@
</el-descriptions>
</template>
<script setup lang="ts">
import { ref } from "vue";
const lists = ref<ForDataType<undefined>>([
{ type: "", label: "善良" },
{ type: "success", label: "好学" },
{ type: "info", label: "幽默" },
{ type: "danger", label: "旅游" },
{ type: "warning", label: "追剧" }
]);
</script>
<style scoped>
.el-tag--mini {
margin-right: 10px !important;