code.tsx 228 B

1234567891011121314
  1. import { update } from '/@/api/role'
  2. import type { Role } from '/@/api/role'
  3. import { defineProps } from 'vue';
  4. const props = defineProps<{
  5. role: Role
  6. }>();
  7. export default {
  8. props: props,
  9. setup() {
  10. }
  11. }