# aoda.css **Repository Path**: aodazhang/aoda-css ## Basic Information - **Project Name**: aoda.css - **Description**: 更轻更快的原子化 css 样式库,让切页面变的更加愉悦!🎨 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://aodazhang.com/aoda-css - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-01-15 - **Last Updated**: 2025-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🎨 aoda.css [![sass](https://img.shields.io/badge/dart--sass-v1.51.0-orange?style=flat-square&logo=github)](https://github.com/sass/dart-sass) [![stylelint](https://img.shields.io/badge/stylelint-v14.8.2-orange?style=flat-square&logo=github)](https://github.com/stylelint/stylelint) ![gzip](https://img.shields.io/badge/gzip-14.2kb-blue?style=flat-square) 更轻更快的原子化 css 样式库,让切页面变的更加愉悦! ### 🚚 文档 更多内容请参考 [文档](https://aodazhang.com/aoda-css),您可以关注 [changelog](https://gitee.com/aodazhang/aoda.css/blob/master/CHANGELOG.md) 获取最新进展! [在线示例](https://project.aodazhang.com/aoda-css/#/) ### 🛠 安装与使用 #### 1.安装 - 包管理器 ```shell npm i aoda.css -S # or yarn add aoda.css -S ``` - cdn ```html ``` #### 2.使用 - main.ts ```typescript import { createApp } from 'vue' import App from './App.vue' // 1.在你项目的入口文件中引入 aoda.css import 'aoda.css' createApp(App).mount('#app') ``` - App.vue ```html ```