mirror of
https://github.com/aelve/guide.git
synced 2024-12-25 22:02:58 +03:00
23 lines
402 B
Vue
23 lines
402 B
Vue
<template>
|
|
<category
|
|
:categoryId="categoryId"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
import Category from 'client/components/Category.vue'
|
|
import Component from 'vue-class-component'
|
|
import { Prop } from 'vue-property-decorator'
|
|
|
|
@Component({
|
|
components: {
|
|
Category
|
|
}
|
|
})
|
|
|
|
export default class CategoryPage extends Vue {
|
|
@Prop(String) categoryId!: string
|
|
}
|
|
</script>
|