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
  • optimize Input validate icon
    ef090131
    梁灏 authored
    2017-04-01 12:08:08 +0800  
    Browse Code »
input.vue 292 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<template>
    <div>
        <Input v-model="value" placeholder="请输入..." style="width: 150px" icon="ios-clock-outline"></Input>
    </div>
</template>
<script>
    export default {
        data () {
            return {
                value: ''
            }
        }
    }
</script>