mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
21 lines
442 B
Vue
21 lines
442 B
Vue
<template>
|
|
<el-switch v-model="value1" :active-icon="Check" :inactive-icon="Close">
|
|
</el-switch>
|
|
<br />
|
|
<el-switch
|
|
v-model="value2"
|
|
style="margin-left: 24px"
|
|
inline-prompt
|
|
:active-icon="Check"
|
|
:inactive-icon="Close"
|
|
>
|
|
</el-switch>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { Check, Close } from '@element-plus/icons-vue'
|
|
const value1 = ref(true)
|
|
const value2 = ref(true)
|
|
</script>
|