tiny-vue_version0/examples/sites/demos/pc/app/switch/event-change-composition-ap...

12 lines
261 B
Vue

<template>
<tiny-switch @change="handleChange"></tiny-switch>
</template>
<script setup>
import { Switch as TinySwitch, Modal } from '@opentiny/vue'
function handleChange(val) {
Modal.message({ message: `开关值:${val}`, status: 'info' })
}
</script>