systemStore.ts 101 B

12345
  1. import { reactive } from 'vue'
  2. export const systemStore = reactive({
  3. stepRange: [0, 5, 10, 20]
  4. })