First commit
This commit is contained in:
14
components/GroupDescription.vue
Normal file
14
components/GroupDescription.vue
Normal 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>
|
||||
Reference in New Issue
Block a user