<template>
<view>
66666666666
<button type="primary" @tap="postMessage" class="box">33333</button>
</view>
</template>
<script>
export default {
data() {
return {
}
},
created() {
console.log(35)
},
onLoad() {
console.log(52356)
},
methods: {
postMessage(){
uni.$emit('subNVueMsg', {
title: '我是一个title',
content: '我试data content'
});
}
}
}
</script>
<style>
page{background: #000000;color: #fff;}
view{background: #4C83D6;}
.box{background: #1AAD19;}
</style>