forked from opentiny/tiny-vue
44 lines
1.1 KiB
Vue
44 lines
1.1 KiB
Vue
<template>
|
|
<div class="demo-input">
|
|
<tiny-input v-model="inputChange" placeholder="input, change" @input="onInput" @change="onChange"></tiny-input>
|
|
<tiny-input v-model="focusBlur" placeholder="focus, blur" @focus="onFocus" @blur="onBlur"></tiny-input>
|
|
<tiny-input v-model="clearValue" placeholder="clear" clearable @clear="onClear"></tiny-input>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { Input as TinyInput, Modal } from '@opentiny/vue'
|
|
|
|
const inputChange = ref('')
|
|
const focusBlur = ref('')
|
|
const clearValue = ref('clear')
|
|
|
|
function onChange() {
|
|
Modal.message({ message: 'change 事件触发了', status: 'info' })
|
|
}
|
|
|
|
function onInput() {
|
|
Modal.message({ message: 'input 事件触发了', status: 'info' })
|
|
}
|
|
|
|
function onBlur() {
|
|
Modal.message({ message: 'blur 事件触发了', status: 'info' })
|
|
}
|
|
|
|
function onFocus() {
|
|
Modal.message({ message: 'focus 事件触发了', status: 'info' })
|
|
}
|
|
|
|
function onClear() {
|
|
Modal.message({ message: 'clear 事件触发了', status: 'info' })
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-input .tiny-input {
|
|
width: 250px;
|
|
margin: 5px;
|
|
}
|
|
</style>
|