\r\n\u003C!-- First usage generates the following HTML -->\r\n\u003Csvg data-icon=\"logo\">\r\n \u003Csymbol id=\"ai:uniqueid\">\u003C!-- contents of logo.svg -->\u003C/symbol>\r\n \u003Cuse xlink:href=\"#ai:uniqueid\">\u003C/use>\r\n\u003C/svg>\r\n\r\n\u003CIcon name=\"logo\" />\r\n\u003C!-- Additional usage generates the following HTML -->\r\n\u003Csvg data-icon=\"logo\">\r\n \u003Cuse xlink:href=\"#ai:uniqueid\">\u003C/use>\r\n\u003C/svg>\r\n```\r\n\r\nIt'd be nice to have this feature in Nuxt Icon module as well.",[],256,"icon","Auto-optimized sprites using `\u003Csymbol>` and `\u003Cuse>`","2024-09-26T17:08:19Z","https://github.com/nuxt/icon/issues/256",0.7302555,{"description":2034,"labels":2035,"number":2040,"owner":1994,"repository":1995,"state":1996,"title":2041,"updated_at":2042,"url":2043,"score":2044},"### Description\n\n\nHow to set v-model type of UCalendar\n`\n \u003CUCalendar\n v-model=\"datePickerValue\"\n range\n size=\"lg\"\n color=\"error\"\n weekday-format=\"short\"\n >\n \u003Ctemplate #heading=\"{ value }\">\n \u003Cdiv class=\"custom-heading\">\n \u003Ch2 class=\"text-sm font-medium text-[#3f3f3f] leading-tight\">\n {{ formatMonthYear(value) }}\n \u003C/h2>\n \u003C/div>\n \u003C/template>\n\n \u003C!-- Day 커스터마이즈 -->\n \u003Ctemplate #day=\"{ day }\">\n \u003Cdiv class=\"custom-day\">\n \u003Cspan\n :class=\"{\n 'text-sm font-semibold': isDaySelected(day),\n 'text-sm font-normal': !isDaySelected(day),\n }\"\n >{{ extractDay(day) }}\u003C/span\n >\n \u003C/div>\n \u003C/template>\n\n \u003Ctemplate #week-day=\"{ day }\">\n \u003Cdiv class=\"custom-week-day bg-white border-none\">\n \u003Cspan class=\"font-medium text-xs text-[#7e7e7e]\">{{ day }}\u003C/span>\n \u003C!-- 예시: 요일을 간단하게 출력 -->\n \u003C/div>\n \u003C/template>\n \u003C/UCalendar>\n`\n\n`const datePickerValue = ref\u003C{ start: DateValue; end: DateValue }>({\n start: new CalendarDate(\n new Date().getFullYear(),\n new Date().getMonth() + 1,\n new Date().getDate()\n ) as DateValue,\n end: new CalendarDate(\n new Date().getFullYear(),\n new Date().getMonth() + 1,\n new Date().getDate()\n ) as DateValue,\n});`\n\nI put the above variable in v-model, but I get the following error. How should I declare the type?\n\n`'{ start: { readonly calendar: { identifier: string; fromJulianDay: (jd: number) => CalendarDate; toJulianDay: (date: AnyCalendarDate) => number; getDaysInMonth: (date: AnyCalendarDate) => number; ... 8 more ...; isInverseEra?: ((date: AnyCalendarDate) => boolean) | undefined; }; ... 11 more ...; compare: (b: AnyCale...' 형식은 'DateRange' 형식에 할당할 수 없습니다.\n 'start' 속성의 형식이 호환되지 않습니다.\n '{ readonly calendar: { identifier: string; fromJulianDay: (jd: number) => CalendarDate; toJulianDay: (date: AnyCalendarDate) => number; getDaysInMonth: (date: AnyCalendarDate) => number; ... 8 more ...; isInverseEra?: ((date: AnyCalendarDate) => boolean) | undefined; }; ... 11 more ...; compare: (b: AnyCalendarDate)...' 형식은 'DateValue | undefined' 형식에 할당할 수 없습니다.\n '{ readonly calendar: { identifier: string; fromJulianDay: (jd: number) => CalendarDate; toJulianDay: (date: AnyCalendarDate) => number; getDaysInMonth: (date: AnyCalendarDate) => number; ... 8 more ...; isInverseEra?: ((date: AnyCalendarDate) => boolean) | undefined; }; ... 11 more ...; compare: (b: AnyCalendarDate)...' 형식은 'DateValue | undefined' 형식에 할당할 수 없습니다.\n '{ readonly calendar: { identifier: string; fromJulianDay: (jd: number) => CalendarDate; toJulianDay: (date: AnyCalendarDate) => number; getDaysInMonth: (date: AnyCalendarDate) => number; ... 8 more ...; isInverseEra?: ((date: AnyCalendarDate) => boolean) | undefined; }; ... 11 more ...; compare: (b: AnyCalendarDate)...' 형식에 'ZonedDateTime' 형식의 #private, hour, minute, second 외 4개 속성이 없습니다.ts-plugin(2322)\nCalendar.vue(99, 3): 필요한 형식은 여기에서 '{ readonly \"onUpdate:modelValue\"?: ((date: DateRange | null) => any) | undefined; readonly \"onUpdate:placeholder\"?: ((...args: unknown[]) => any) | undefined; readonly \"onUpdate:startValue\"?: ((date: DateValue | undefined) => any) | undefined; ... 36 more ...; prevPage?: ((placeholder: DateValue) => DateValue) | und...' 형식에 선언된 'modelValue' 속성에서 가져옵니다.`",[2036,2039],{"name":2037,"color":2038},"question","d876e3",{"name":1988,"color":1989},3900,"How to set v-model type of UCalendar","2025-04-15T02:00:18Z","https://github.com/nuxt/ui/issues/3900",0.73375016,{"description":2046,"labels":2047,"number":2051,"owner":1994,"repository":2052,"state":2053,"title":2054,"updated_at":2055,"url":2056,"score":2057},"Hi @danielroe - thanks for this package. I'm getting this error:\r\n```\r\nFailed to load nuxt-vitest module. You may need to add it to your nuxt.config.\r\n```\r\n\r\nMy directory structure is a little different though as I'm creating a module:\r\nhttps://github.com/components-web-app/cwa-nuxt-module/tree/fix/tests\r\n\r\nI had been using another plugin but came across the same issue as was raised here relating to a missing virtual file.\r\nhttps://github.com/nuxt/nuxt/issues/20550\r\n\r\nDo you have any suggestions on the best way for me to resolve this?",[2048],{"name":2049,"color":2050},"vitest-environment","b60205",569,"test-utils","closed","How to use when creating a module?","2023-12-02T00:32:11Z","https://github.com/nuxt/test-utils/issues/569",0.45227292,{"description":2059,"labels":2060,"number":2063,"owner":1994,"repository":2064,"state":2053,"title":2065,"updated_at":2066,"url":2067,"score":2068},"This composable will only handle the fetch with [createSharedComposable](https://vueuse.org/shared/createsharedcomposable/) from VueUse.",[2061],{"name":1985,"color":2062},"1ad6ff",149,"nuxt.com","Composable to fetch GitHub installations","2022-05-20T13:10:36Z","https://github.com/nuxt/nuxt.com/issues/149",0.67149097,{"description":2070,"labels":2071,"number":2076,"owner":1994,"repository":1995,"state":2053,"title":2077,"updated_at":2078,"url":2079,"score":2080},"### Description\nThe current implementation of Nested forms in nuxt ui uses flex as a way to differentiate between row forms.\n\nI am currently trying to use Nuxt UI v2 UTable component with the UForm component. \n\nHowever, a more ideal situation for me would be an implementation that uses the features of Nuxt UI's table with the nested Uform component. Meaning I can have the benefits of nuxt ui's form validation as well as the table.\n\n[The implementation here would be awesome](https://stackoverflow.com/questions/6707386/add-form-to-table-rows). A more ideal implentation is [this](https://jsfiddle.net/ZRQPP/), but with the form validation features that nuxt ui provides ",[2072,2073],{"name":2037,"color":2038},{"name":2074,"color":2075},"stale","ededed",3171,"[Table] with row [Form] component features.","2025-03-09T13:19:00Z","https://github.com/nuxt/ui/issues/3171",0.7227217,{"description":2082,"labels":2083,"number":2093,"owner":1994,"repository":1994,"state":2053,"title":2094,"updated_at":2095,"url":2096,"score":2097},"### Environment\n\n\"nuxt\": \"^3.6.2\",\r\n\n\n### Reproduction\n\nHi!\r\nI try to add a composable under the composables folder and call it into a vue file.\n\n### Describe the bug\n\nIt returns 500 Not Defined\r\n\r\n\u003Cimg width=\"1047\" alt=\"Screenshot 2023-07-14 at 10 11 07\" src=\"https://github.com/nuxt/nuxt/assets/38940340/b6569e6f-10b3-453d-8a7d-3f688656bfb7\">\r\n\r\nThanks and kind regards,\r\n\r\nDavide\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2084,2087,2090],{"name":2085,"color":2086},"3.x","29bc7f",{"name":2088,"color":2089},"pending triage","E99695",{"name":2091,"color":2092},"needs reproduction","FBCA04",22136,"Composables autoimport doesn't works in my \"nuxt\": \"^3.6.2\",","2023-10-20T10:59:25Z","https://github.com/nuxt/nuxt/issues/22136",0.7251875,{"description":2099,"labels":2100,"number":2105,"owner":1994,"repository":1994,"state":2053,"title":2106,"updated_at":2107,"url":2108,"score":2109},"Nuxt 3 uses Vue 3 with Composition API and [unjs/unctx](https://github.com/unjs/unctx) for supporting composables with the implicit context in nuxtApp (plugins, middleware) and nuxt kit too.\r\n\r\nHowever, there are many cases in this needs a better explanation of how it works internally to understand why an issue like [nuxt instance unavailable](https://github.com/nuxt/framework/issues?q=nuxt+instance+unavailable) happens and how to fix it with proper usage.\r\n\r\nI've made an outline story in https://github.com/nuxt/nuxt.js/issues/14269 which can probably be used as a basis to initiate this concept page.",[2101,2104],{"name":2102,"color":2103},"documentation","5319e7",{"name":2085,"color":2086},14723,"Document composables concept","2023-09-19T20:24:18Z","https://github.com/nuxt/nuxt/issues/14723",0.72648674,["Reactive",2111],{},["Set"],["ShallowReactive",2114],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"6ttUOZcA2ICCIOFQfvGf6G1PpJFbn3TGMeyWqFstuGE":-1},"/nuxt/nuxt.com/569"]