Logo white

other / mew-iview

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • mew-iview
  • examples
  • routers
  • input.vue
  • fixed #554
    319f5f86
    梁灏 authored
    2017-04-01 12:28:32 +0800  
    Browse Code »
input.vue 486 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<template>
    <div style="width: 300px;">
        <i-input v-model="value11" icon="ios-clock-outline">
            <span slot="prepend">http://</span>
        </i-input>
    </div>
</template>
<script>
    export default {
        data () {
            return {
                value11: '',
                value12: '',
                value13: '',
                select1: 'http',
                select2: 'com',
                select3: 'day'
            }
        }
    }
</script>