Files
granblue-party/components/GroupDescription.vue
2026-03-27 10:14:29 +03:00

14 lines
348 B
Vue

<template>
<textarea class="w-full h-full appearance-none text-primary bg-secondary" v-model="description"></textarea>
</template>
<script>
export default {
computed: {
description: {
get() { return this.$store.state.party_builder.description },
set(value) { this.$store.commit('setDescription', value) }
},
}
}
</script>