Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://guilhermewaess.github.io/SemVue/
Semantic-ui components easy in your vue project
https://guilhermewaess.github.io/SemVue/
Last synced: about 10 hours ago
JSON representation
Semantic-ui components easy in your vue project
- Host: GitHub
- URL: https://guilhermewaess.github.io/SemVue/
- Owner: guilhermewaess
- License: mit
- Created: 2017-06-06T03:59:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-08T14:55:50.000Z (almost 7 years ago)
- Last Synced: 2024-11-08T20:48:55.411Z (8 days ago)
- Language: JavaScript
- Homepage: https://guilhermewaess.github.io/SemVue
- Size: 4.54 MB
- Stars: 34
- Watchers: 6
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
----------
> Semantic-ui modules/components in you Vue project
## Using
[You can see the docs and demo here](https://guilhermewaess.github.io/SemVue)
``` bash
# install package
npm install semvue --save
```## Using any component
Simply import in your .vue the component that you want:
``` javascript
import { Modal } from 'semvue';export default {
components: {
Modal,
},
};
```## Components so far
- Accordion
- Dimmer
- Dropdown
- Embed
- Modal
- Popup
- Progress
- Rating## To do and improvements
- [x] Accordion
- [x] Basic Implementation
- [x] Initialization options override
- [ ] Checkbox
- [x] Dimmer
- [x] Basic Implementation
- [x] Initialization options override
- [x] Dropdown
- [x] Basic Implementation
- [x] Embed
- [x] Modal
- [x] Basic Implementation
- [x] Initialization options override
- [ ] Nag
- [x] Popup
- [x] Basic Implementation
- [x] Initialization options override
- [x] Progress
- [x] Rating
- [x] Basic Implementation
- [x] Initialization options override
- [ ] Search
- [ ] Shape
- [ ] Sidebar
- [ ] Sticky
- [ ] Tab
------# Site Demo/Semvue Build Setup
``` bash
# install dependencies
npm install# serve with hot reload at localhost:8081
npm start# run unit tests
npm run unit# run all tests
npm test
```