Nuxt/test/fixtures/basic/pages/nested/[foo]/[bar].vue

8 lines
166 B
Vue
Raw Normal View History

2022-03-08 18:03:21 +00:00
<template>
<div>
<div>nested/[foo]/[bar].vue</div>
<div>foo: {{ $route.params.foo }}</div>
<div>bar: {{ $route.params.bar }}</div>
</div>
</template>