mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 11:53:08 +02:00
47 lines
967 B
Vue
47 lines
967 B
Vue
|
<template>
|
||
|
<FormBase>
|
||
|
|
||
|
</FormBase>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
||
|
import { faFlask } from '@fortawesome/free-solid-svg-icons';
|
||
|
import FormSwitch from '@/components/form/switch.vue';
|
||
|
import FormSelect from '@/components/form/select.vue';
|
||
|
import FormLink from '@/components/form/link.vue';
|
||
|
import FormBase from '@/components/form/base.vue';
|
||
|
import FormGroup from '@/components/form/group.vue';
|
||
|
import FormButton from '@/components/form/button.vue';
|
||
|
import FormKeyValueView from '@/components/form/key-value-view.vue';
|
||
|
import * as os from '@/os';
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: {
|
||
|
FormBase,
|
||
|
FormSelect,
|
||
|
FormSwitch,
|
||
|
FormButton,
|
||
|
FormLink,
|
||
|
FormGroup,
|
||
|
FormKeyValueView,
|
||
|
},
|
||
|
|
||
|
emits: ['info'],
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
INFO: {
|
||
|
title: this.$t('experimentalFeatures'),
|
||
|
icon: faFlask
|
||
|
},
|
||
|
stats: null
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted() {
|
||
|
this.$emit('info', this.INFO);
|
||
|
},
|
||
|
});
|
||
|
</script>
|