12 lines
226 B
Vue
12 lines
226 B
Vue
<script setup lang="ts">
|
|
import type { Entity } from '@triplit/client';
|
|
import type schema from '#triplit/schema';
|
|
|
|
defineProps<{
|
|
error_part: Entity<typeof schema, 'message_parts'>;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
|
|
</template> |