Vue2.0父子组件传递函数的教程详解
程序员文章站
2022-06-17 17:01:37
vue.js 是什么
vue.js (读音 /vjuː/,类似于 view) 是一套构建用户界面的渐进式框架。与其他重量级框架不同的是,vue 采用自底向上增量...
vue.js 是什么
vue.js (读音 /vjuː/,类似于 view) 是一套构建用户界面的渐进式框架。与其他重量级框架不同的是,vue 采用自底向上增量开发的设计。vue 的核心库只关注视图层,它不仅易于上手,还便于与第三方库或既有项目整合。另一方面,当与单文件组件和 vue 生态系统支持的库结合使用时,vue 也完全能够为复杂的单页应用程序提供驱动。
学习笔记:在vue2.0中,父组件调用子组件时,想要将父组件中的函数体也做传递.
1. 通过props :需要从子组件传参数到父组件时适用
// 父组件.vue
<template> <div> <ok-input :params='number' :callback='callbacknum'></ok-input> </div> </template> <script type="text/ecmascript-6"> import okinput from '../ok-input/okinput.vue'; export default { props: {}, data() { return { number: {}, callbacknum: function (x) { console.log(x); } }; }, methods: { }, components: { 'ok-input': okinput } }; </script>
// 子组件.vue
<template> <div> <input v-model='numval' @change='handlefun'></input> </div> </template> <script type="text/ecmascript-6"> import {input, select, option, button} from 'element-ui'; import 'element-ui/lib/theme-default/index.css'; export default { props: { params: { type: object, default: { type: '' } }, callback: {} }, data() { return { x: 'hah', numval: '' }; }, methods: { handlefun(val) { this.callback(val); // 将参数传回父组件中的回调函数 } }, components: { 'el-input': input, } }; </script>
2.通过$emit: 只需获得当前操作对象时适用
// 父组件.vue <template> <div> <ok-input :params='inputs' @change='handleage'></ok-input> </div> </template> <script type="text/ecmascript-6"> import okinput from '../ok-input/okinput.vue'; export default { props: {}, data() { return { number: {} }; }, methods: { handleage(evt) { console.log(evt.target.value); // 接收从子组件传过来的当前对象 } }, components: { 'ok-input': okinput } }; </script>
// 子组件.vue
<template> <div> <input v-model='numval' @blur='handlechange'></input> </div> </template> <script type="text/ecmascript-6"> import {input, select, option, button} from 'element-ui'; import 'element-ui/lib/theme-default/index.css'; export default { props: { params: { type: object, default: { type: '' } }, callback: {} }, data() { return { x: 'hah', numval: '' }; }, methods: { handlechange(evt) { this.$emit('change', evt); // 将当前对象 evt 传递到父组件 }, }, components: { 'el-input': input, } }; </script>
总结
以上所述是小编给大家介绍的vue2.0父子组件传递函数的教程详解,希望对大家有所帮助