47 lines
859 B
Vue
47 lines
859 B
Vue
<template>
|
|
<div class="geegznzt">
|
|
<XAntenna :antenna="draft" @created="onAntennaCreated"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { inject } from 'vue';
|
|
import XAntenna from './editor.vue';
|
|
import { i18n } from '@/i18n';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
import { useRouter } from '@/router';
|
|
|
|
const router = useRouter();
|
|
|
|
let draft = $ref({
|
|
name: '',
|
|
src: 'all',
|
|
userListId: null,
|
|
userGroupId: null,
|
|
users: [],
|
|
keywords: [],
|
|
excludeKeywords: [],
|
|
withReplies: false,
|
|
caseSensitive: false,
|
|
withFile: false,
|
|
notify: false,
|
|
});
|
|
|
|
function onAntennaCreated() {
|
|
router.push('/my/antennas');
|
|
}
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.manageAntennas,
|
|
icon: 'fas fa-satellite',
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|