fix: temporary storage

This commit is contained in:
xiaoxian521
2021-04-12 18:01:20 +08:00
parent 68330026b6
commit 78d9c17201
7 changed files with 225 additions and 5 deletions

View File

@@ -0,0 +1,23 @@
<template>
<el-card class="box-card" style="margin:20px">
<template #header>
<div class="card-header">
<span>基本使用</span>
</div>
</template>
<Selector />
</el-card>
</template>
<script lang='ts'>
import Selector from "../../../components/selector/index.vue";
export default {
components: { Selector },
setup() {
return {};
},
};
</script>
<style scoped>
</style>