Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nejinn/nly-adminlte-vue
vuejs2 AdminLte3 template more than 50 components and 10 directives.such as collapse ,sidebar,container,infobox,breadcrumb,card,grid,dropdown,toast,navbar,timeline,icon,progress
https://github.com/nejinn/nly-adminlte-vue
adminlte adminlte-template adminlte3 bootstrap4 cli3 collapse css3 html infobox javascript sidebar vnly-sidebar-collapse vue vue-admin vue-cli vue-components vue2 vue2js vuejs
Last synced: about 1 month ago
JSON representation
vuejs2 AdminLte3 template more than 50 components and 10 directives.such as collapse ,sidebar,container,infobox,breadcrumb,card,grid,dropdown,toast,navbar,timeline,icon,progress
- Host: GitHub
- URL: https://github.com/nejinn/nly-adminlte-vue
- Owner: nejinn
- License: mit
- Created: 2020-02-18T15:55:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-05T19:59:25.000Z (3 months ago)
- Last Synced: 2024-10-03T14:54:25.982Z (about 1 month ago)
- Topics: adminlte, adminlte-template, adminlte3, bootstrap4, cli3, collapse, css3, html, infobox, javascript, sidebar, vnly-sidebar-collapse, vue, vue-admin, vue-cli, vue-components, vue2, vue2js, vuejs
- Language: JavaScript
- Homepage: http://nly-adminlte-vue.nejinn.com/
- Size: 34 MB
- Stars: 59
- Watchers: 5
- Forks: 27
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
English README || [中文 README](https://github.com/nejinn/nly-adminlte-vue/tree/master/zh)
# nly-adminlte-vue
> nly-adminlte-vue is based on adminlte3 vue2.js, not need JQ
> Welcome to communicating with QQ:927568606
> This is a Alpha Version,Some prop perhaps deprecated in new Version, user caution!
# Demo
> The Demo is synchronize with master
[admin-demo](http://gin-admin.nejinn.com)
uusername: admin
passowrd:123456[components-demo](http://nly-adminlte-vue-demo.nejinn.com/#/)
[components-demo](https://nejinn.github.io/nly-adminlte-vue-demo/)
# Docs
> [nly-daminlte-vue-docs](http://nly-adminlte-vue.nejinn.com/)
**Note** : The documentation has not been completely migrated to the website. If there is no document on the website, you can view it in the README.md under the corresponding component folder.
We also can view docs localhost with `npm run docs-dev`. [docs-dev](#43-install)
## Install
### clone from Github
```js
git clone https://github.com/nejinn/nly-adminlte-vue.git
npm install npm run
serve view example http://localhost:8080
view local docs npm run docs-dev
```### npm
- import all
```js
npm install nly-adminlte-vue
main.js
import "nly-adminlte-vue/dist/adminlte/css/adminlte.css";
import "nly-adminlte-vue/dist/adminlte/fontawesome-free/css/all.css";
import "nly-adminlte-vue/dist/adminlte/icon/iconfont.css";
import "nly-adminlte-vue/dist/nly-adminlte-vue.css";
import { NlyAdminlteVue, NlyAdminlteVueIcons } from "nly-adminlte-vue";
Vue.use(NlyAdminlteVue);
Vue.use(NlyAdminlteVueIcons);
```- CDN
```html
```
- import one
> Just like nly-badge
```js
import { NlyBadge } from "nly-adminlte-vue";
Vue.component("nly-badge", NlyBadge);
```> import Plugin
```js
import { badgePlugin } from "nly-adminlte-vue";
Vue.use(badgePlugin);
```# Thanks