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.

34 lines
1004 B

2 years ago
<template>
2 years ago
<w-grid
:title="$t('menu.developer.plugin.frontendModule')"
:toolbar-actions="['refresh', 'separator', 'view']"
2 years ago
:fetch-data-url="Environment.apiContextPath('/api/developer/plugins/frontendModule')"
2 years ago
:checkbox-selection="false"
:pageable="false"
2 years ago
:columns="[
2 years ago
{ width: 200, name: 'name', label: $t('name'), sortable: false },
2 years ago
{
2 years ago
width: 200,
2 years ago
name: 'components',
label: $t('component'),
2 years ago
sortable: false,
format: Formater.join('<br/>'),
title: Formater.join('\n'),
2 years ago
},
{
width: 400,
2 years ago
name: 'resources',
label: $t('resource'),
2 years ago
sortable: false,
format: Formater.join('<br/>'),
title: Formater.join('\n'),
2 years ago
},
{ width: 100, name: 'configurationFileUrl', label: $t('url'), sortable: false },
2 years ago
]"
></w-grid>
2 years ago
</template>
2 years ago
<script setup lang="ts">
import 'tailwindcss/utilities.css';
import { Environment, Formater } from 'platform-core';
2 years ago
</script>