23 lines
307 B
Vue
23 lines
307 B
Vue
<template>
|
|
<tr>
|
|
<td colspan="3">
|
|
<q-collapsible
|
|
:label="spell.name"
|
|
group="spells"
|
|
>
|
|
{{spell.description}}
|
|
</q-collapsible>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: [
|
|
'spell'
|
|
]
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="stylus">
|
|
</style>
|