tiny-vue/examples/sites/demos/mobile-first/app/switch/enent.vue

19 lines
298 B
Vue

<template>
<tiny-switch @change="enent"></tiny-switch>
</template>
<script>
import { Switch, Modal } from '@opentiny/vue'
export default {
components: {
TinySwitch: Switch
},
methods: {
enent(val) {
Modal.message({ message: `${val}`, status: 'info' })
}
}
}
</script>