1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="hello">hello</view>
- </template>
- <script>
- export default {
- props: {},
- data: () => ({}),
- computed: {},
- methods: {},
- watch: {},
- // 组件周期函数--监听组件挂载完毕
- mounted() {},
- // 组件周期函数--监听组件数据更新之前
- beforeUpdate() {},
- // 组件周期函数--监听组件数据更新之后
- updated() {},
- // 组件周期函数--监听组件激活(显示)
- activated() {},
- // 组件周期函数--监听组件停用(隐藏)
- deactivated() {},
- // 组件周期函数--监听组件销毁之前
- beforeDestroy() {},
- };
- </script>
- <style></style>
|