vx-vue 0.6.2 → 0.6.4
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 +8 -1
- package/dist/vxvue.es.js +508 -441
- package/dist/vxvue.umd.js +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ VxVue provides a handful of reusable Vue components styled with Tailwind CSS. Al
|
|
|
9
9
|
|
|
10
10
|
The official Tailwind CSS forms plugin is used to provide basic styling of the form components using the class strategy which allows the styling of non-form elements consistently.
|
|
11
11
|
An easy to configure color theming is applied. Since Tailwind won't observe classes in imported components tailwind.config.js should contain
|
|
12
|
-
```
|
|
12
|
+
```javascript
|
|
13
13
|
module.exports = {
|
|
14
14
|
content: [
|
|
15
15
|
'./node_modules/vx-vue/**/*.js',
|
|
@@ -18,6 +18,13 @@ module.exports = {
|
|
|
18
18
|
...
|
|
19
19
|
}
|
|
20
20
|
```
|
|
21
|
+
To use the few scoped styles along with your CSS add
|
|
22
|
+
|
|
23
|
+
```javascript
|
|
24
|
+
import 'vx-vue/vx-vue.css'
|
|
25
|
+
```
|
|
26
|
+
to your main.js or index.js file.
|
|
27
|
+
|
|
21
28
|
## Provided components
|
|
22
29
|
So far the following components have been implemented:
|
|
23
30
|
|