We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd0b81a commit 3a83d52Copy full SHA for 3a83d52
template/code/typescript-i18n/src/views/AboutView.vue
@@ -0,0 +1,15 @@
1
+<template>
2
+ <div class="about">
3
+ <h1>This is an about page</h1>
4
+ </div>
5
+</template>
6
+
7
+<style>
8
+@media (min-width: 1024px) {
9
+ .about {
10
+ min-height: 100vh;
11
+ display: flex;
12
+ align-items: center;
13
+ }
14
+}
15
+</style>
template/code/typescript-i18n/src/views/HomeView.vue
@@ -0,0 +1,9 @@
+<script setup>
+import TheWelcome from '../components/TheWelcome.vue'
+</script>
+ <main>
+ <TheWelcome />
+ </main>
0 commit comments