2025-03-26 19:28:20 +08:00

24 lines
332 B
TypeScript

import { reactive } from 'vue';
export const connectionMethods = reactive({
current: 'stdio',
data: [
{
value: 'stdio',
label: 'stdio'
},
{
value: 'sse',
label: 'sse'
}
]
});
export const connectionCommand = reactive({
commandString: ''
});
export function onconnectionmethodchange() {
console.log();
}