@vlalg-nimbus/nb-selects 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -0
- package/dist/favicon.ico +0 -0
- package/dist/nb-selects.js +1984 -0
- package/dist/nb-selects.umd.cjs +1 -0
- package/dist/style.css +1 -0
- package/package.json +78 -0
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# nb-selects
|
|
2
|
+
> This component is only for [Vue.js 3+](https://vuejs.org/)
|
|
3
|
+
|
|
4
|
+
<br />
|
|
5
|
+
|
|
6
|
+
This lib contains select components.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @vlalg-nimbus/nb-selects
|
|
12
|
+
|
|
13
|
+
# or
|
|
14
|
+
|
|
15
|
+
yarn add @vlalg-nimbus/nb-selects
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
```js
|
|
21
|
+
// main.js
|
|
22
|
+
import { createApp } from 'vue'
|
|
23
|
+
import App from './App.vue'
|
|
24
|
+
|
|
25
|
+
import NbSelectsComponents from '@vlalg-nimbus/nb-selects'
|
|
26
|
+
import "@vlalg-nimbus/nb-selects/dist/style.css";
|
|
27
|
+
|
|
28
|
+
const app = createApp(App)
|
|
29
|
+
app.use(NbSelectsComponents)
|
|
30
|
+
app.mount('#app')
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Components list
|
|
34
|
+
|
|
35
|
+
The components that are part of this lib are:
|
|
36
|
+
|
|
37
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-selects/nb-select" target="_blank">nb-select</a>
|
|
38
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-selects/nb-toggle" target="_blank">nb-toggle</a>
|
|
39
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-selects/nb-toggle-button" target="_blank">nb-toggle-button</a>
|
|
40
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-selects/nb-toggle-skewed" target="_blank">nb-toggle-skewed</a>
|
|
41
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-selects/nb-toggle-flip" target="_blank">nb-toggle-flip</a>
|
|
42
|
+
|
|
43
|
+
Click on each one above to find out how to use it, properties, events, etc.
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
[MIT](http://opensource.org/licenses/MIT)
|
package/dist/favicon.ico
ADDED
|
Binary file
|