| 123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="header">
- 头部组件{{aa}}
- </view>
- </template>
- <script>
- export default {
- data(){
- return {
- aa:"哈哈哈"
- }
- },
- // onLoad() {
- // console.log("组件onLoad")
- // },
- // onShow() {
- // console.log("组件onShow")
- // },
- created() {
- console.log('组件创建')
- },
- mounted() {
- console.log('组件挂载')
- },
- }
- </script>
- <style>
- </style>
|