+
+
+// syntax highlighting example
+function vitesse() {
+ const foo = 'bar'
+ console.log(foo)
+}
+
+
+heck out the [GitHub repo](https://github.com/antfu/vitesse) for more details.
diff --git a/src/pages/README.md b/src/pages/README.md
new file mode 100644
index 0000000..929b7c9
--- /dev/null
+++ b/src/pages/README.md
@@ -0,0 +1,20 @@
+## File-based Routing
+
+Routes will be auto-generated for Vue files in this dir with the same file structure.
+Check out [`vite-plugin-pages`](https://github.com/hannoeru/vite-plugin-pages) for more details.
+
+### Path Aliasing
+
+`~/` is aliased to `./src/` folder.
+
+For example, instead of having
+
+```ts
+import { isDark } from '../../../../composables'
+```
+
+now, you can use
+
+```ts
+import { isDark } from '~/composables'
+```
diff --git a/src/pages/[...all].vue b/src/pages/[...all].vue
new file mode 100755
index 0000000..241e7e2
--- /dev/null
+++ b/src/pages/[...all].vue
@@ -0,0 +1,5 @@
+
+ + Hi, {{ props.name }} +
++ Dynamic route! +
+ +
+
+
{{ data.address }}
+{{ get_data('city') }}
+{{ data.postalcode }} {{ get_data('state') }}
+{{ get_data('country')}}
++ {{ t('from', 'From') }}: + + {{ cert.author }} + +
+ +