forked from opentiny/tiny-vue
32 lines
471 B
Vue
32 lines
471 B
Vue
<template>
|
|
<div class="demo-input">
|
|
<tiny-input v-model="text" placeholder="请输入内容" clearable @clear="clear"></tiny-input>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Input, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyInput: Input
|
|
},
|
|
data() {
|
|
return {
|
|
text: ''
|
|
}
|
|
},
|
|
methods: {
|
|
clear() {
|
|
Modal.message('clear')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-input .tiny-input {
|
|
width: 250px;
|
|
}
|
|
</style>
|