26 lines
379 B
Vue
26 lines
379 B
Vue
![]() |
<template>
|
||
|
<i-input></i-input>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { Input } from 'iview';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
iInput: Input
|
||
|
},
|
||
|
props: {
|
||
|
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|