@quidgest/ui 0.14.8 → 0.14.9
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 +5 -5
- package/dist/ui.css +1 -0
- package/dist/ui.esm.js +847 -847
- package/dist/ui.js +25 -25
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +175 -175
- package/dist/ui.scss +2 -1
- package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.vue.js +105 -105
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,17 +44,17 @@ createApp(App).use(framework).mount('#app')
|
|
|
44
44
|
|
|
45
45
|
Once installed, components can be used like so:
|
|
46
46
|
|
|
47
|
-
```
|
|
47
|
+
```vue
|
|
48
48
|
<template>
|
|
49
49
|
<q-button @click="handleClick">Click me</q-button>
|
|
50
50
|
</template>
|
|
51
51
|
|
|
52
52
|
<script setup lang="ts">
|
|
53
|
-
import { QButton } from '@quidgest/ui'
|
|
53
|
+
import { QButton } from '@quidgest/ui/components'
|
|
54
54
|
|
|
55
|
-
function handleClick() {
|
|
56
|
-
|
|
57
|
-
}
|
|
55
|
+
function handleClick() {
|
|
56
|
+
console.log("Parallel lines have so much in common. It's a shame they'll never meet.")
|
|
57
|
+
}
|
|
58
58
|
</script>
|
|
59
59
|
```
|
|
60
60
|
|