useHetong.js 279 B

12345678910111213141516
  1. import { provide,inject } from "vue"
  2. const customKey = 'hetong';
  3. export function useHetong() {
  4. const injectHetong = (defaultValue) => inject(customKey,defaultValue)
  5. const provideHetong = (data) => provide(customKey, data)
  6. return {
  7. injectHetong,
  8. provideHetong
  9. }
  10. }