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.

20 lines
786 B

2 years ago
<template>
2 years ago
<w-grid
:title="$t('menu.developer.plugin.directories')"
:toolbar-actions="['refresh', 'separator', 'view']"
2 years ago
:fetch-data-url="Environment.apiContextPath('/api/developer/plugins/directories')"
2 years ago
:checkbox-selection="false"
:pageable="false"
2 years ago
:columns="[
2 years ago
{ width: 200, name: 'name', label: $t('name'), sortable: false },
{ width: 200, name: 'path', label: $t('path'), sortable: false },
{ width: 100, name: 'autoCreate', label: $t('autoCreate'), format: Formater.yesNo(), sortable: false },
{ width: 200, 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';
2 years ago
import { Environment, Formater } from 'platform-core';
2 years ago
</script>