next-dev-team / nuxt3-antd

Home Page:https://nuxt3-ant-design.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nuxt 3 Boilerplate with Ant Design

Look at the nuxt 3 documentation to learn more.

Online Preview

https://nuxt3-ant-design.netlify.app/

Setup

Make sure to install the dependencies:

# pnpm
pnpm i

Development Server

Start the development server on http://localhost:3000

pnpm  dev

Known Issue

  • hot reload antd not working in folder pages so I move all UI to template folder
  • Auto import Antd design Icon must be with Prefix <IconAnt...
  • Antd Typescript issue TypeScript not working with LiteralUnion please change new LiteralUnion here
type Primitive = null | undefined | string | number | boolean | symbol | bigint;

export type LiteralUnion<LiteralType, BaseType extends Primitive> =
  | LiteralType
  | (BaseType & Record<never, never>);

Credit

Thanks to Vue open source community

About

https://nuxt3-ant-design.netlify.app/


Languages

Language:TypeScript 62.1%Language:Less 21.3%Language:Vue 14.2%Language:JavaScript 2.4%