2016-11-07 14:16:20 +08:00
|
|
|
<template>
|
2017-04-01 12:28:32 +08:00
|
|
|
<div style="width: 300px;">
|
2017-04-28 14:53:17 +08:00
|
|
|
<i-input v-model="value11" icon="ios-clock-outline" :autofocus="autofocus">
|
2017-04-01 12:48:45 +08:00
|
|
|
<span slot="prepend">.com</span>
|
|
|
|
</i-input>
|
2017-04-01 12:28:32 +08:00
|
|
|
<i-input v-model="value11" icon="ios-clock-outline">
|
2017-04-01 12:48:45 +08:00
|
|
|
<span slot="append">.com</span>
|
2017-04-01 12:28:32 +08:00
|
|
|
</i-input>
|
2016-11-08 17:53:04 +08:00
|
|
|
</div>
|
2016-11-07 14:16:20 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data () {
|
|
|
|
return {
|
2017-04-01 12:28:32 +08:00
|
|
|
value11: '',
|
|
|
|
value12: '',
|
|
|
|
value13: '',
|
|
|
|
select1: 'http',
|
|
|
|
select2: 'com',
|
2017-04-28 14:53:17 +08:00
|
|
|
select3: 'day',
|
|
|
|
autofocus: true
|
2016-11-08 17:53:04 +08:00
|
|
|
}
|
2016-11-07 14:16:20 +08:00
|
|
|
}
|
|
|
|
}
|
2017-03-01 15:23:12 +08:00
|
|
|
</script>
|