You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
986 B
47 lines
986 B
<docs>
|
|
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 进度圈动态展示
|
|
en-US: Dynamic circular progress bar
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
会动的进度条才是好进度条。
|
|
|
|
## en-US
|
|
|
|
A dynamic progress bar is better.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<div>
|
|
<a-progress type="circle" :percent="defaultPercent" />
|
|
<a-button-group>
|
|
<a-button @click="decline">
|
|
<template #icon><minus-outlined /></template>
|
|
</a-button>
|
|
<a-button @click="increase">
|
|
<template #icon><plus-outlined /></template>
|
|
</a-button>
|
|
</a-button-group>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { MinusOutlined, PlusOutlined } from '@ant-design/icons-vue';
|
|
import { ref } from 'vue';
|
|
const defaultPercent = ref<number>(0);
|
|
|
|
const increase = () => {
|
|
const percent = defaultPercent.value + 10;
|
|
defaultPercent.value = percent > 100 ? 100 : percent;
|
|
};
|
|
|
|
const decline = () => {
|
|
const percent = defaultPercent.value - 10;
|
|
defaultPercent.value = percent < 0 ? 0 : percent;
|
|
};
|
|
</script>
|