https://github.com/IfFaith/ngx-vant-revive
ngx-vant的延续版本,ngx-vant目前好像已经无人维护了,此项目是在ngx-vant的基础上拓展需要的新功能
https://github.com/IfFaith/ngx-vant-revive
angular components mobile ngx-vant ngx-vant-revice ui-kit ui-library vant
Last synced: 13 days ago
JSON representation
ngx-vant的延续版本,ngx-vant目前好像已经无人维护了,此项目是在ngx-vant的基础上拓展需要的新功能
- Host: GitHub
- URL: https://github.com/IfFaith/ngx-vant-revive
- Owner: IfFaith
- License: mit
- Created: 2025-06-27T01:30:03.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-07-10T05:58:20.000Z (4 months ago)
- Last Synced: 2025-07-10T14:30:35.459Z (4 months ago)
- Topics: angular, components, mobile, ngx-vant, ngx-vant-revice, ui-kit, ui-library, vant
- Language: TypeScript
- Homepage:
- Size: 1.77 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-awesome-angular - ngx-vant-revive - Angular UI component library implemented according to the 🌎 [Zan Design System](design.youzan.com/) visual specifications. (Third Party Components / UI Libraries)
- awesome-angular - ngx-vant-revive - Angular UI component library implemented according to the [Zan Design System](https://design.youzan.com/) visual specifications. (Third Party Components / UI Libraries)
README
ngx-vant-revive
Mobile UI Components built on Angular
🔥 文档网站
---
## Features
- 65+ Reusable components
- 1kb Component average size (min+gzip)
- Extensive documentation and demos
- Support Angular14
- Support Tree Shaking
- Support Custom Theme
- Support i18n
- Support TS
- Support SSR
## Install
```bash
npm i ngx-vant-revive -S
```
## Quickstart
```js
import { BrowserModule } from "@angular/platform-browser";
import { NgModule } from "@angular/core";
import { AppComponent } from "./app.component";
import { ButtonModule } from "ngx-vant-revive/button";
import { Vant18nModule, VANT_I18N } from "ngx-vant-revive/i18n";
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, AppRoutingModule, ButtonModule],
providers: [{ provide: VANT_I18N, useValue: zh_CN }],
bootstrap: [AppComponent],
})
export class AppModule {}
```
See more in [Quickstart](https://iffaith.github.io/ngx-vant-revive/#/basic/quickstart).
## Contribution
Please make sure to read the [Contributing Guide](https://iffaith.github.io/ngx-vant-revive/#/basic/contribution) before making a pull request.
## Browser Support
Modern browsers and Android 4.0+, iOS 8.0+.
## Links
- [Documentation](https://iffaith.github.io/ngx-vant-revive)
## LICENSE
[MIT](https://en.wikipedia.org/wiki/MIT_License)