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>
<template>
<div class="h-screen flex items-center justify-center">
<div class="flex space-x-2">
<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"/>
<button class="text-gray-900 bg-gray-50 border border-gray-300 px-4 py-2 rounded-lg">Search</button>
</div>
<div>
<h1>Nuxt Routing set up successfully!</h1>
<p>Current route: {{ route.path }}</p>
<a href="https://nuxt.com/docs/getting-started/routing" target="_blank">Learn more about Nuxt Routing</a>
</div>
</template>

View File

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

View File

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