test.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view>
  3. <!-- pages/test/test.wxml -->
  4. <text>pages/test/test.wxml</text>
  5. </view>
  6. </template>
  7. <script>
  8. // pages/test/test.js
  9. export default {
  10. data() {
  11. return {};
  12. }
  13. /**
  14. * 生命周期函数--监听页面加载
  15. */,
  16. onLoad: function (options) {},
  17. /**
  18. * 生命周期函数--监听页面初次渲染完成
  19. */
  20. onReady: function () {},
  21. /**
  22. * 生命周期函数--监听页面显示
  23. */
  24. onShow: function () {},
  25. /**
  26. * 生命周期函数--监听页面隐藏
  27. */
  28. onHide: function () {},
  29. /**
  30. * 生命周期函数--监听页面卸载
  31. */
  32. onUnload: function () {},
  33. /**
  34. * 页面相关事件处理函数--监听用户下拉动作
  35. */
  36. onPullDownRefresh: function () {},
  37. /**
  38. * 页面上拉触底事件的处理函数
  39. */
  40. onReachBottom: function () {},
  41. /**
  42. * 用户点击右上角分享
  43. */
  44. onShareAppMessage: function () {},
  45. methods: {}
  46. };
  47. </script>
  48. <style>
  49. @import './test.css';
  50. </style>