### Install Ant Design Vue Source: https://www.antdv.com/docs/vue/getting-started Command to install the ant-design-vue package. ```bash $ npm i --save ant-design-vue@4.x ``` -------------------------------- ### Initialize Project with Vue CLI Source: https://www.antdv.com/docs/vue/getting-started Commands to install Vue CLI globally and create a new project. ```bash $ npm install -g @vue/cli # OR $ yarn global add @vue/cli $ vue create antd-demo ``` -------------------------------- ### Initialize Project with Vite Source: https://www.antdv.com/docs/vue/getting-started Command to create a new project using Vite. ```bash $ npm create vite@latest ``` -------------------------------- ### Global Registration All Components Source: https://www.antdv.com/docs/vue/getting-started Example of globally registering all Ant Design Vue components and their styles. ```javascript import { createApp } from 'vue'; import Antd from 'ant-design-vue'; import App from './App'; import 'ant-design-vue/dist/reset.css'; const app = createApp(App); app.use(Antd).mount('#app'); ``` -------------------------------- ### Initialize Project with Rsbuild Source: https://www.antdv.com/docs/vue/getting-started Command to create a new project using Rsbuild. ```bash $ npm create rsbuild@latest ``` -------------------------------- ### SSR Static Style Extraction Example Source: https://www.antdv.com/docs/vue/ssr-extract-ssr-cn This example demonstrates how to create a cache, render components to extract styles, and then get the style content. ```javascript const cache = createCache(); // HTML Content renderToString(