blob: 36a8795e1ab5e3a1100fdebbfde1b922c3c9f092 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<template>
<div>
<InterestsHero />
<InterestsListing />
</div>
</template>
<script lang="ts">
import InterestsHero from '~/components/ui/interests/InterestsHero.vue'
import InterestsListing from '~/components/ui/interests/InterestsListing.vue'
export default {
head: {
title: 'Interests | Volatile'
},
components: {
InterestsHero,
InterestsListing
}
}
</script>
|