๐Ÿ“ฆ nilgradisnik / positive

๐Ÿ“„ food.vue ยท 31 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31<template>
  <markdown-content>
    <page0 class="content index"/>
    <page1 class="content food1"/>
    <page2 class="content food2"/>
    <page3 class="content food3"/>
    <page4 class="content food4"/>
  </markdown-content>
</template>

<script>
import MarkdownContent from '~/components/MarkdownContent.vue'

import Page0 from '~/content/food/index.vue'
import Page1 from '~/content/food/food1.vue'
import Page2 from '~/content/food/food2.vue'
import Page3 from '~/content/food/food3.vue'
import Page4 from '~/content/food/food4.vue'

export default {
  components: {
    MarkdownContent,
    Page0,
    Page1,
    Page2,
    Page3,
    Page4
  }
}
</script>