mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
16 lines
222 B
Vue
16 lines
222 B
Vue
|
<template>
|
||
|
<el-switch v-model="value1" disabled />
|
||
|
<el-switch v-model="value2" />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
value1: true,
|
||
|
value2: true,
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
</script>
|