UniAPP mounted onload
时间: 2023-12-03 19:40:02 浏览: 142
uniapp实现上拉刷新下拉加载
根据提供的引用内容,UniAPP中没有onLoad生命周期函数,而是使用onLoad生命周期函数的小程序框架(如微信小程序)。在UniAPP中,可以使用mounted生命周期函数来代替onLoad生命周期函数。mounted生命周期函数会在页面渲染完毕后执行,可以在该函数中进行一些初始化操作。
以下是UniAPP中使用mounted生命周期函数的示例代码:
```vue
<template>
<view>
<text>{{ message }}</text>
</view>
</template>
<script>
export default {
data() {
return {
message: 'Hello World!'
}
},
mounted() {
console.log('页面渲染完毕')
}
}
</script>
```
阅读全文