text.vue子组件
<template>
<view>
</view>
</template>
<script module="test" lang="renderjs">
export default {
data() {
return {
};
},
methods: {
test() {
}
}
}
</script>
//index.vue父组件
<template>
<button style="width: 100px; height: 100px;" @click="test">测试</button>
<test ref="test" style="width: 100px; height: 100px;">测试</test>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
test() {
this.$refs.test.test()
}
}
}
</script>
0 个回复