Sharkey/src/client/pages/settings/plugin.vue

45 lines
1.1 KiB
Vue
Raw Normal View History

2021-02-06 14:05:00 +02:00
<template>
<FormBase>
<FormLink to="/settings/plugin/install"><template #icon><i class="fas fa-download"></i></template>{{ $ts._plugin.install }}</FormLink>
<FormLink to="/settings/plugin/manage"><template #icon><i class="fas fa-folder-open"></i></template>{{ $ts._plugin.manage }}<template #suffix>{{ plugins }}</template></FormLink>
2021-02-06 14:05:00 +02:00
</FormBase>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
2021-09-29 18:50:45 +03:00
import FormBase from '@client/components/debobigego/base.vue';
import FormGroup from '@client/components/debobigego/group.vue';
import FormLink from '@client/components/debobigego/link.vue';
2021-03-23 10:30:14 +02:00
import * as os from '@client/os';
import { ColdDeviceStorage } from '@client/store';
2021-04-10 06:54:12 +03:00
import * as symbols from '@client/symbols';
2021-02-06 14:05:00 +02:00
export default defineComponent({
components: {
FormBase,
FormLink,
},
emits: ['info'],
data() {
return {
2021-04-10 06:54:12 +03:00
[symbols.PAGE_INFO]: {
2021-02-06 14:05:00 +02:00
title: this.$ts.plugins,
2021-09-29 18:50:45 +03:00
icon: 'fas fa-plug',
bg: 'var(--bg)',
2021-02-06 14:05:00 +02:00
},
2021-02-07 11:11:56 +02:00
plugins: ColdDeviceStorage.get('plugins').length,
2021-02-06 14:05:00 +02:00
}
},
mounted() {
2021-04-10 06:54:12 +03:00
this.$emit('info', this[symbols.PAGE_INFO]);
2021-02-06 14:05:00 +02:00
},
});
</script>
<style lang="scss" scoped>
</style>