<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>