mine.vue 875 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="mine">mine</div>
  3. </template>
  4. <script>
  5. export default {
  6. components: {},
  7. data: () => ({}),
  8. computed: {},
  9. methods: {},
  10. watch: {},
  11. // 页面周期函数--监听页面加载
  12. onLoad() {},
  13. // 页面周期函数--监听页面初次渲染完成
  14. onReady() {},
  15. // 页面周期函数--监听页面显示(not-nvue)
  16. onShow() {},
  17. // 页面周期函数--监听页面隐藏
  18. onHide() {},
  19. // 页面周期函数--监听页面卸载
  20. onUnload() {},
  21. // 页面处理函数--监听用户下拉动作
  22. onPullDownRefresh() {
  23. uni.stopPullDownRefresh();
  24. },
  25. // 页面处理函数--监听用户上拉触底
  26. onReachBottom() {},
  27. // 页面处理函数--监听页面滚动(not-nvue)
  28. /* onPageScroll(event) {}, */
  29. // 页面处理函数--用户点击右上角分享
  30. /* onShareAppMessage(options) {}, */
  31. };
  32. </script>
  33. <style></style>