mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-11-01 05:54:19 +00:00
28 lines
697 B
Vue
28 lines
697 B
Vue
<template>
|
|
<main class="page content">
|
|
|
|
<div class="theme-default-content">
|
|
<h1>{{ $page.title }}</h1>
|
|
<div class="magic-item-details">
|
|
<span>{{ $page.frontmatter.type }}</span>
|
|
<span v-if="$page.frontmatter.subtype"> ({{ $page.frontmatter.subtype }})</span>
|
|
<span>, {{ $page.frontmatter.rarity }}</span>
|
|
<span v-if="$page.frontmatter.attunement"> ({{ $page.frontmatter.attunement }})</span>
|
|
</div>
|
|
</div>
|
|
|
|
<Content class="mt-4" />
|
|
|
|
<p v-if="$page.frontmatter.source" class="source">Source : <em>{{ $page.frontmatter.source }}</em></p>
|
|
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
</style>
|