16 lines
235 B
Vue
16 lines
235 B
Vue
<template>
|
|
<container>
|
|
{{ $route.params.pathMatch.pop() }}
|
|
</container>
|
|
</template>
|
|
|
|
<script>
|
|
import Container from '../components/Container.vue';
|
|
|
|
export default {
|
|
components: {
|
|
Container
|
|
}
|
|
}
|
|
</script>
|