iview/test/routers/input.vue

26 lines
379 B
Vue
Raw Normal View History

2016-11-07 14:16:20 +08:00
<template>
<i-input></i-input>
</template>
<script>
import { Input } from 'iview';
export default {
components: {
iInput: Input
},
props: {
},
data () {
return {
}
},
computed: {
},
methods: {
}
}
</script>