Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (18 sloc)
511 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-card elevation="1"> | |
I am a foo page, my params: [{{routeParams}}] | |
<router-view></router-view> | |
<links-component sample-prop="SampleProp from Foo"></links-component> | |
</v-card> | |
</template> | |
<script> | |
import LinksComponent from "~/components/LinksComponent"; | |
import {logRouteQueryAndParams} from '~/mixins/logRouteQueryAndParams.js'; | |
export default { | |
name: "foo", | |
components: {LinksComponent}, | |
mixins: [logRouteQueryAndParams] | |
} | |
</script> | |
<style scoped> | |
</style> |