uni-app封装input组件用于登录

Posted 流年少年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uni-app封装input组件用于登录相关的知识,希望对你有一定的参考价值。

组件

<template>
	<view>
		<view class="uni-form-item uni-column">
			<input class="my-uni-input" @blur="replaceInput" v-model="changeValue"  :placeholder="placer" />
		</view>
	</view>	
	
</template>

<script>
export default {
	data() {
		return {
			changeValue:""
		};
	},
	props:{
		placer:{
			type:String
		}
	},
	
	methods:{
		replaceInput(){
			this.$emit(\'myblur\',[this.changeValue])
		}
	}
}
</script>

<style>
.my-uni-input{
	margin: 10rpx  auto;
	width: 700rpx;
	height: 80rpx;
	border:none;
	border-bottom:1px solid #CCCCCC;
	/* text-indent: 20rpx; 不兼容小程序*/
	padding-left: 20rpx;
	}
</style>

使用

<my-input @myblur="myblur" placer="请输入账号"></my-input>
<my-input @myblur="myblur" placer="请输入密码"></my-input>

import aa  from "../../components/search.vue"//引入

components:{
    "my-input":aa
},
methods:{
  myblur(messarr){
    console.log("父组件接受到的值",messarr  )
  }
}
封装这个组件input,主要运用了vue中的父传子。和子传父。
父传子,props
子传父,this.$emit()
@blur="replaceInput" 失去焦点。
双向数据绑定和vue是一样的哈

以上是关于uni-app封装input组件用于登录的主要内容,如果未能解决你的问题,请参考以下文章

uni-app:封装组件

uni-app:封装组件

uni-app 微信小程序授权登录

uni-app 4.7封装头像组件

uni-app 4.9封装badge组件

uni-app 图标按钮组件封装(4.2)