mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00

fix: remove useless defineProps fix: add the missing dependencies to package.json fix: add ES2022 into tsconfig.json
53 lines
1.6 KiB
Vue
53 lines
1.6 KiB
Vue
<template>
|
|
<div>
|
|
<t-form labelAlign="left">
|
|
<t-form-item label="启用">
|
|
<t-switch v-model="config.enable" />
|
|
</t-form-item>
|
|
<t-form-item label="URL">
|
|
<t-input v-model="config.url" />
|
|
</t-form-item>
|
|
<t-form-item label="消息格式">
|
|
<t-select v-model="config.messagePostFormat" :options="messageFormatOptions" />
|
|
</t-form-item>
|
|
<t-form-item label="报告自身消息">
|
|
<t-switch v-model="config.reportSelfMessage" />
|
|
</t-form-item>
|
|
<t-form-item label="Token">
|
|
<t-input v-model="config.token" />
|
|
</t-form-item>
|
|
<t-form-item label="调试模式">
|
|
<t-switch v-model="config.debug" />
|
|
</t-form-item>
|
|
<t-form-item label="心跳间隔">
|
|
<t-input v-model.number="config.heartInterval" type="number" />
|
|
</t-form-item>
|
|
</t-form>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, watch } from 'vue';
|
|
import { WebsocketClientConfig } from '../../../../src/onebot/config/config';
|
|
|
|
const props = defineProps<{
|
|
config: WebsocketClientConfig;
|
|
}>();
|
|
|
|
const messageFormatOptions = ref([
|
|
{ label: 'Array', value: 'array' },
|
|
{ label: 'String', value: 'string' },
|
|
]);
|
|
|
|
watch(
|
|
() => props.config.messagePostFormat,
|
|
(newValue) => {
|
|
if (newValue !== 'array' && newValue !== 'string') {
|
|
props.config.messagePostFormat = 'array';
|
|
}
|
|
}
|
|
);
|
|
</script>
|
|
|
|
<style scoped></style>
|