feat(project-crud-sync): add planning artifacts for CRUD project lifecycle #5

Open
NHoarau wants to merge 14 commits from feat/create-projects into main
2 changed files with 2 additions and 2 deletions
Showing only changes of commit edcee7cd80 - Show all commits

View file

@ -65,7 +65,7 @@ const columns: TableColumn<Project>[] = [
:links="[{ label: newProjectLabel, icon: 'i-lucide-plus', to: '/projects/new', color: 'primary' }]" /> :links="[{ label: newProjectLabel, icon: 'i-lucide-plus', to: '/projects/new', color: 'primary' }]" />
<UPageBody> <UPageBody>
<UAlert v-if="error" color="error" variant="soft" icon="i-lucide-alert-circle" :title="error" class="mb-4" /> <LazyUAlert v-if="error" color="error" variant="soft" icon="i-lucide-alert-circle" :title="error" class="mb-4" />
<UCard> <UCard>
<UTable :columns="columns" :data="projects" :loading="loading" class="flex-1"> <UTable :columns="columns" :data="projects" :loading="loading" class="flex-1">

View file

@ -1,6 +1,6 @@
// https://nuxt.com/docs/api/configuration/nuxt-config // https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({ export default defineNuxtConfig({
modules: ["@nuxt/eslint", "@nuxt/ui", "@nuxtjs/i18n", "@nuxt/a11y"], modules: ["@nuxt/eslint", "@nuxt/ui", "@nuxtjs/i18n", "@nuxt/a11y", "@nuxt/hints"],
devtools: { devtools: {
enabled: true, enabled: true,