use-table.js 143 B

12345
  1. import { inject } from 'vue'
  2. export const cipTableKey = Symbol('cip-table')
  3. export const useTable = () => {
  4. return inject(cipTableKey, {})
  5. }