mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
25 lines
241 B
Markdown
25 lines
241 B
Markdown
|
<cn>
|
||
|
#### 基本
|
||
|
最简单的用法。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Basic
|
||
|
The simplest usage.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<a-rate v-model='value'/>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
value: 2,
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
```
|