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.

33 lines
1.1 KiB

1 year ago
<template>
1 year ago
<w-grid
:title="$t('menu.developer.plugin.applicationProperties')"
:toolbar-actions="['refresh', 'separator', 'view', 'export']"
:fetch-data-url="Environment.apiContextPath('/api/developer/plugins/applicationProperties')"
:checkbox-selection="false"
:pageable="false"
1 year ago
:columns="[
{ width: 50, name: 'order', label: $t('order'), align: 'right', sortable: false },
{ width: 150, name: 'module', label: $t('module'), sortable: false },
{ width: 200, name: 'description', label: $t('description'), sortable: false },
1 year ago
{
width: 300,
1 year ago
name: 'properties',
label: $t('properties'),
sortable: false,
1 year ago
format: (properties) => {
properties = properties || [];
let result = '';
for (const property of properties) {
result += property + '<br/>';
}
return result;
},
},
{ width: 200, name: 'configurationFileUrl', label: $t('url') },
1 year ago
]"
></w-grid>
1 year ago
</template>
1 year ago
<script setup lang="ts">
import { Environment } from 'platform-core';
</script>