AgGridStudyCom.vue 271 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<script setup lang="ts">
// import { reactive } from 'vue';

const props = defineProps<{
  params: any;
}>();
</script>
<template>
  <div>
    <q-chip v-bind="props.params.config">{{ props.params.value }}</q-chip>
  </div>
</template>

<style lang="scss" scoped></style>