mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-12-18 08:00:51 +00:00
intégration des objets magiques + filtres
This commit is contained in:
parent
1330db17af
commit
d80cbc2600
315 changed files with 13824 additions and 2 deletions
28
docs/.vuepress/theme/components/MagicItem.vue
Normal file
28
docs/.vuepress/theme/components/MagicItem.vue
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue