ant-design-vue/components/rate/demo/disabled.vue
2021-11-26 17:17:40 +08:00

24 lines
333 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<docs>
---
order: 3
title:
zh-CN: 只读
en-US: Read only
---
## zh-CN
只读无法进行鼠标交互
## en-US
Read only, can't use mouse to interact.
</docs>
<template>
<a-rate :value="2" disabled />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({});
</script>