Vue2组件基本结构

作者:Keysqiu
创建时间:2025-11-30 18:19:02 最后一次修改时间:2025-11-30 18:19:02
Categories: Tags:
<template>
  <div>
  //code...
  </div>
</template>
<script>
export default {
  data() {
    return {}
  },
  computed: {},
  watch: {},
  created() {
  },
  mounted() {
  },
  beforeDestroy() {
  console.log('我要走了')
  // 清理定时器
  // clearInterval(this.timer)
}
  methods: {}
}
</script>
<style scoped>
</style>