父元件如何使用子元件中的方法
阿新 • • 發佈:2020-07-21
子元件,有一個childMethod方法
<template> <view> </view> </template> <script> export default { data(){ return { } }, onLoad(){ }, methods:{ childMethod() { console.log('childMethod do...') } } } </script> <style> </style>
父元件,呼叫childMethod方法
<template> <view class="content"> <mian-index ref="mainindex"></mian-index> <view @tap="dataAction">button</view> </view> </template> <script> import mainindex from '@/pages/main/index/index.vue' export default { data() { return { }; }, components:{ 'mian-index':mainindex }, onLoad(e) { }, methods:{ dataAction:function(){ this.$refs.mainindex.childMethod(); //呼叫子元件方法 } } } </script> <style scoped> .content{ width:100%; box-sizing: border-box; } </style>