First commit

This commit is contained in:
2026-03-27 10:14:29 +03:00
commit ad29150770
10404 changed files with 962562 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<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>