33 lines
736 B
Vue
33 lines
736 B
Vue
<template>
|
|
<div class="md-example-child md-example-child-input-item-4">
|
|
<md-field>
|
|
<md-input-item
|
|
ref="input11"
|
|
title="手机号码"
|
|
value="1999999999999"
|
|
error="手机号码位数有误"
|
|
clearable
|
|
></md-input-item>
|
|
<md-input-item
|
|
ref="input11"
|
|
title="手机号码"
|
|
value="1999999999999"
|
|
error="手机号码位数有误"
|
|
clearable
|
|
is-title-latent
|
|
></md-input-item>
|
|
</md-field>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {InputItem, Field} from 'mand-mobile'
|
|
|
|
export default {
|
|
name: 'input-item-demo',
|
|
title: '错误提示',
|
|
components: {
|
|
[InputItem.name]: InputItem,
|
|
[Field.name]: Field,
|
|
},
|
|
}
|
|
|
|
</script> |