variable.js 442 Bytes
/*
 * @Date: 2022-06-12 23:54:24
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2022-06-13 00:50:29
 * @FilePath: /tswj/src/composables/variable.js
 * @Description: 文件描述
 */
import { ref } from 'vue';

export const loading = ref(false);
export const finished = ref(false);
export const limit = ref(5);
export const offset = ref(0)
export const finishedTextStatus = ref(false);
export const emptyStatus = ref(false);