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.
 
 
 
 
 
 

17 lines
661 B

<template>
<w-grid
:title="$t('menu.developer.plugin.jsonSerializers')"
:toolbar-actions="['refresh', 'separator', 'view', 'export']"
:fetch-data-url="Environment.apiContextPath('/api/developer/plugins/jsonSerializers')"
row-key="id"
:columns="[
{ width: '20%', name: 'className', label: $t('className') },
{ width: '40%', name: 'serializer', label: $t('serializer') },
{ width: '40%', name: 'deserializer', label: $t('deserializer') },
{ width: '40%', name: 'configurationFileUrl', label: $t('url') },
]"
></w-grid>
</template>
<script setup lang="ts">
import { Environment } from 'platform-core';
</script>