21 lines
650 B
Vue
21 lines
650 B
Vue
<script lang="ts" setup>
|
|
import SvgIcon from '@/components/SvgIcon/index.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<view class="flex flex-col items-center justify-center pt-36rpx text-lg font-medium">
|
|
<view class="mt-30px">
|
|
SvgIcon 组件
|
|
</view>
|
|
<view class="mt-30rpx center flex flex-row gap-10px">
|
|
<SvgIcon icon="i-mdi-account-box" size="48" class="text-blue" />
|
|
<SvgIcon icon="i-mdi-account-box" size="32" class="text-green-400" />
|
|
<SvgIcon icon="i-mdi-account-box" class="text-red-400" />
|
|
<SvgIcon icon="i-svg-spinners-12-dots-scale-rotate" />
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|