<template>
<view class="">
嘿嘿
{{ name }}
<button @click="handlerClick">click</button>
<button @click="toTwoPage">toTwoPage</button>
<foo :fooName="fooName" :obj="obj" @parentCompontents='parentCompontents'></foo>
</view>
</template>
<script setup>
import foo from '@/compontents/common/navbar.vue';
import { ref, reactive } from 'vue';
const name = '嘿嘿';
const fooName = 'Supper';
const parentCompontents =val=>{
console.log(val);
}
const obj = reactive({
name: 'nn',
age: 18
});
const handlerClick = () => {
console.log('dianjile');
};
const toTwoPage = () => {
uni.navigateTo({
url: '../two/two',
success: res => {},
fail: err => {
console.log('err', err);
},
complete: () => {}
});
};
defineExpose({
fooName,
obj
});
</script>
<style></style>
以上是默认打开页Index.nvue的代码
以下是跳转页代码
<template>
<view>
嘿嘿
</view>
</template>
<script setup>
</script>
<style>
</style>
- 发布:2022-06-29 10:48
- 更新:2022-06-29 10:57
- 阅读:344
【报Bug】安卓11和模拟器都试过了,两个nvue页面字体大小不一样,差了太多了,还分别用了vue2和vue3测试了,用了Hbuilder 3.2倒是没什么字体大小问题,就是默认字体都挺大
产品分类: HbuilderX
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: windows11
HBuilderX版本号: 3.4.15
示例代码:
操作步骤:
如题,请管理员核查
如题,请管理员核查
预期结果:
如题,请管理员核查
如题,请管理员核查
实际结果:
如题,请管理员核查
如题,请管理员核查
7***@qq.com (作者)
已经上传了源码
2022-06-30 08:24