1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-02 10:53:23 +00:00
Nuxt/test/fixtures/basic/pages/nested/[foo]/user-[group].vue
2022-03-08 19:03:21 +01:00

8 lines
177 B
Vue

<template>
<div>
<div>nested/[foo]/user-[group].vue</div>
<div>foo: {{ $route.params.foo }}</div>
<div>group: {{ $route.params.group }}</div>
</div>
</template>