mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-15 11:34:06 +08:00

* docs: standardize unified example code format and fix some example type * docs: update some example type * Update docs/examples/descriptions/sizes.vue Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com> * docs: update example-page-header * docs: update example-page-header --------- Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
14 lines
241 B
Vue
14 lines
241 B
Vue
<template>
|
|
<el-rate v-model="value" size="large" />
|
|
<br />
|
|
<el-rate v-model="value" />
|
|
<br />
|
|
<el-rate v-model="value" size="small" />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const value = ref(0)
|
|
</script>
|