Compare commits

..

No commits in common. "3f647a3e68a14f7bf0dcca62e07d5d5cd994e24d" and "f4d94a3336a64fb797e056ebf78c2c8b824a6ca4" have entirely different histories.

3 changed files with 8 additions and 12 deletions

View File

@ -3,10 +3,9 @@ const route = useRoute()
</script> </script>
<template> <template>
<div class="h-screen flex items-center justify-center"> <div>
<div class="flex space-x-2"> <h1>Nuxt Routing set up successfully!</h1>
<input placeholder=".NET C#" class="text-center bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg p-2.5 w-192"/> <p>Current route: {{ route.path }}</p>
<button class="text-gray-900 bg-gray-50 border border-gray-300 px-4 py-2 rounded-lg">Search</button> <a href="https://nuxt.com/docs/getting-started/routing" target="_blank">Learn more about Nuxt Routing</a>
</div>
</div> </div>
</template> </template>

View File

@ -7,6 +7,7 @@ const loading = ref<boolean>(true);
const error = ref<string | null>(null); const error = ref<string | null>(null);
let dict = ref<ProgressDictionary[] | null>(null); let dict = ref<ProgressDictionary[] | null>(null);
const fetchMyData = async () => { const fetchMyData = async () => {
try { try {
loading.value = true; loading.value = true;
@ -35,6 +36,8 @@ const fetchMyData = async () => {
fetchMyData(); fetchMyData();
</script> </script>
<template> <template>

View File

@ -9,13 +9,7 @@ export default {
"./error.vue", "./error.vue",
], ],
theme: { theme: {
extend: { extend: {},
width: {
'128': '32rem',
'192' : '48rem',
'256': '64rem',
}
},
}, },
plugins: [], plugins: [],
} }