# smat-component **Repository Path**: shweb_1/smat-component ## Basic Information - **Project Name**: smat-component - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-30 - **Last Updated**: 2025-08-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Nuxt 3 Minimal Starter ├── app.vue # Nuxt 3 应用程序中的主组件 入口组件 ├── components # 组件目录,支持自动导入 ├── layouts # 布局目录 ├── composables # 公共函数,支持自动导入 ├── assets # 静态资源目录 与vue项目的assets相同 ├── middleware # 路由中间件 ├── nuxt.config.ts # Nuxt 配置文件,可以理解成vue.config.js 文件名必须是nuxt.config 后缀名可以是.js,.ts或.mjs ├── package.json ├── pages # 基于文件的路由 ├── plugins #插件 ├── public # 不会参与打包,与vue项目的public类似直接挂在服务器的根目录 ├── README.md ├── server ├── tsconfig.json └── yarn.lock ## Setup Make sure to install the dependencies: ```bash # npm npm install # pnpm pnpm install # yarn yarn install # bun bun install ``` ## Development Server Start the development server on `http://localhost:3000`: ```bash # npm npm run dev # pnpm pnpm run dev # yarn yarn dev # bun bun run dev ``` ## Production Build the application for production: ```bash # npm npm run build # pnpm pnpm run build # yarn yarn build # bun bun run build ``` Locally preview production build: ```bash # npm npm run preview # pnpm pnpm run preview # yarn yarn preview # bun bun run preview ``` Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.