mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-22 10:38:04 +09:00
43 lines
823 B
Vue
43 lines
823 B
Vue
<template>
|
|
<MkSpacer :content-max="700">
|
|
<div class="geegznzt">
|
|
<XAntenna :antenna="draft" @created="onAntennaCreated" />
|
|
</div>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
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: [],
|
|
instances: [],
|
|
keywords: [],
|
|
excludeKeywords: [],
|
|
withReplies: false,
|
|
caseSensitive: false,
|
|
withFile: false,
|
|
notify: false,
|
|
});
|
|
|
|
function onAntennaCreated() {
|
|
router.push("/my/antennas");
|
|
}
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.manageAntennas,
|
|
icon: "ph-flying-saucer ph-bold ph-lg",
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|