js中的常用代码段

export default {
    name: 'operationRecord',
    data() {
      return {
        loading: true,
        min_height: document.body.clientHeight - 190,
      }
    },
    mounted() {
      this.loading = false;
    },
    methods: {
  
    },
    watch: {},
    filters: {
        
    },
    components: {},
  }

你可能感兴趣的:(js中的常用代码段)