Browse Source

Merge pull request #2965 from nocodb/refactor/gui-v2-rollup

vue3: Added rollup cell
pull/2970/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
3f4691e4ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      packages/nc-gui-v2/components/virtual-cell/Rollup.vue

4
packages/nc-gui-v2/components/virtual-cell/Rollup.vue

@ -1,9 +1,9 @@
<script setup lang="ts">
const { value } = defineProps<{ value?: any }>()
const value = inject('value')
</script>
<template>
<span>
<span class="text-center pl-3">
{{ value }}
</span>
</template>

Loading…
Cancel
Save