mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 05:04:21 +00:00
21 lines
228 B
Vue
21 lines
228 B
Vue
|
|
<template>
|
||
|
|
<div class="spell">
|
||
|
|
<Spell />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import Spell from '@theme/components/Spell.vue'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'SpellLayout',
|
||
|
|
|
||
|
|
components: {
|
||
|
|
Spell
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
</style>
|