[change] optimize the webapack config
[change] rename test to examples
This commit is contained in:
parent
c06e99d09f
commit
c9c5e751ae
47 changed files with 81 additions and 128 deletions
27
examples/routers/input.vue
Normal file
27
examples/routers/input.vue
Normal file
|
@ -0,0 +1,27 @@
|
|||
<template>
|
||||
<div>
|
||||
<Input v-model="value" placeholder="请输入..." style="width: 300px" icon="ios-clock-outline"></Input>
|
||||
<input type="text" v-model="value">
|
||||
{{ value }}
|
||||
<!--<Input v-model="value">-->
|
||||
<!--<span slot="prepend">http://</span>-->
|
||||
<!--<span slot="append">.com</span>-->
|
||||
<!--</Input>-->
|
||||
<br>
|
||||
<Input type="textarea" v-model="value" placeholder="请输入..."></Input>
|
||||
<Input type="textarea" v-model="value" :rows="4" placeholder="请输入..."></Input>
|
||||
<br>
|
||||
<br>
|
||||
<Input type="textarea" v-model="value" :autosize="true" placeholder="请输入..."></Input>
|
||||
<Input type="textarea" v-model="value" :autosize="{minRows: 2,maxRows: 5}" placeholder="请输入..."></Input>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
value: ''
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue