|
|
@@ -1,19 +1,21 @@
|
|
1
|
1
|
<template lang="pug">
|
|
2
|
|
-article.match
|
|
3
|
|
- h1 Match Page
|
|
|
2
|
+sidebar
|
|
|
3
|
+main.f-col.start.w-full
|
|
|
4
|
+ article.match
|
|
|
5
|
+ h1 Match Page
|
|
|
6
|
+ mainNav
|
|
4
|
7
|
</template>
|
|
5
|
8
|
|
|
6
|
9
|
<script>
|
|
7
|
10
|
import { defineComponent } from 'vue'
|
|
|
11
|
+import sidebar from '../components/Sidebar.vue'
|
|
|
12
|
+import mainNav from '../components/MainNav.vue'
|
|
8
|
13
|
|
|
9
|
14
|
// import icon from '@/components/icon.vue'
|
|
10
|
15
|
// import card from '@/components/card.vue'
|
|
11
|
16
|
|
|
12
|
17
|
export default defineComponent({
|
|
13
|
|
- components: {
|
|
14
|
|
- // card,
|
|
15
|
|
- // icon,
|
|
16
|
|
- },
|
|
|
18
|
+ components: { sidebar, mainNav },
|
|
17
|
19
|
})
|
|
18
|
20
|
</script>
|
|
19
|
21
|
|