quasar-ui-danx 0.2.22 → 0.2.24

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 CHANGED
@@ -34,7 +34,37 @@
34
34
  # Setup
35
35
 
36
36
  ```bash
37
- $ yarn
37
+ yarn create vue # Follow instructions for settings up new Vue App
38
+ yarn add quasar-ui-danx quasar
39
+ yarn add -D sass vite-svg-loader tailwindcss eslint eslint-plugin-import autoprefixer
40
+ ```
41
+
42
+ ### Setup Tailwind
43
+
44
+ Initialize config files for tailwind
45
+ NOTE: vite will automatically pick up the postcss.config.js file, no need to manually configure anything
46
+
47
+ ```
48
+ npx tailwindcss init -p
49
+ ```
50
+
51
+ * Rename tailwind.config.js to tailwind.config.ts
52
+ * Setup your tailwind.config.ts:
53
+ * Make any changes to the colors object
54
+
55
+ ```ts
56
+ /** @type {import('tailwindcss').Config} */
57
+ export const colors = {}
58
+
59
+ export default {
60
+ content: [],
61
+ theme: {
62
+ extend: {
63
+ colors
64
+ }
65
+ },
66
+ plugins: []
67
+ }
38
68
  ```
39
69
 
40
70
  # Developing