chore: structure change

This commit is contained in:
xiaoxian521
2021-04-14 16:44:58 +08:00
parent e027fec6dc
commit f4cd720ce8
43 changed files with 859 additions and 766 deletions

View File

@@ -0,0 +1,48 @@
<template>
<div style="margin:10px">
<el-row :gutter="10">
<el-col :span="10">
<el-card shadow="always">
<CountTo
prefix="$"
:duration="1000"
:color="'#409EFF'"
:fontSize="'60px'"
:startVal="1"
:endVal="1000"
/>
</el-card>
</el-col>
<el-col :span="10">
<el-card shadow="always">
<CountTo
prefix="$"
:duration="2000"
:color="'green'"
:fontSize="'60px'"
:startVal="1"
:endVal="2000"
/>
</el-card>
</el-col>
</el-row>
</div>
</template>
<script lang='ts'>
import CountTo from "/@/components/countTo";
export default {
components: {
CountTo
},
setup() {
return {};
}
};
</script>
<style lang="scss" scoped>
:deep(.el-card) {
text-align: center;
}
</style>