31 lines
595 B
Vue
31 lines
595 B
Vue
<template>
|
|
<form @submit.prevent="startDM">
|
|
<input v-model="userId" />
|
|
<input type="submit" />
|
|
</form>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { useGlobalStore } from '~/stores/store'
|
|
import { IChannel } from '~/types'
|
|
|
|
definePageMeta({
|
|
middleware: 'auth'
|
|
})
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
userId: ''
|
|
}
|
|
},
|
|
methods: {
|
|
async startDM() {
|
|
const server: IChannel = await $fetch('/api/channels/createDM', { method: 'post', body: { partnerId: this.userId } })
|
|
|
|
useGlobalStore().addDM(server)
|
|
useRouter().push({ path: '/channel/@me/' + server.id })
|
|
}
|
|
}
|
|
}
|
|
</script> |