mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
203 B
12 lines
203 B
2 years ago
|
<script setup lang="ts">
|
||
2 years ago
|
import { CellValueInj, inject } from '#imports'
|
||
2 years ago
|
|
||
2 years ago
|
const value = inject(CellValueInj)
|
||
2 years ago
|
</script>
|
||
|
|
||
|
<template>
|
||
2 years ago
|
<span class="text-center pl-3">
|
||
2 years ago
|
{{ value }}
|
||
|
</span>
|
||
|
</template>
|