26 lines
No EOL
379 B
Vue
26 lines
No EOL
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> |