quasarwind 1.0.4 → 1.0.6
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 +3 -3
- package/package.json +1 -1
- package/template/src/components/ExampleComponent.vue +76 -0
- package/{quasarwind → template}/src/layout/MainLayout.vue +0 -1
- package/quasarwind/src/components/ExampleComponent.vue +0 -74
- /package/{quasarwind → template}/.prettierrc +0 -0
- /package/{quasarwind → template}/.vscode/extensions.json +0 -0
- /package/{quasarwind → template}/.vscode/settings.json +0 -0
- /package/{quasarwind → template}/README.md +0 -0
- /package/{quasarwind → template}/eslint.config.js +0 -0
- /package/{quasarwind → template}/index.html +0 -0
- /package/{quasarwind → template}/package-lock.json +0 -0
- /package/{quasarwind → template}/package.json +0 -0
- /package/{quasarwind → template}/public/vite.svg +0 -0
- /package/{quasarwind → template}/src/App.vue +0 -0
- /package/{quasarwind → template}/src/assets/vue.svg +0 -0
- /package/{quasarwind → template}/src/css/app.css +0 -0
- /package/{quasarwind → template}/src/main.ts +0 -0
- /package/{quasarwind → template}/src/page/NotFound.vue +0 -0
- /package/{quasarwind → template}/src/router/index.ts +0 -0
- /package/{quasarwind → template}/src/router/routes.ts +0 -0
- /package/{quasarwind → template}/src/stores/example-store.ts +0 -0
- /package/{quasarwind → template}/src/vite-env.d.ts +0 -0
- /package/{quasarwind → template}/tsconfig.app.json +0 -0
- /package/{quasarwind → template}/tsconfig.json +0 -0
- /package/{quasarwind → template}/tsconfig.node.json +0 -0
- /package/{quasarwind → template}/types.d.ts +0 -0
- /package/{quasarwind → template}/vite.config.ts +0 -0
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<div class="pl-[10px] text-3xl font-bold underline text-white">
|
|
4
|
+
Hello world 1! - Example aplication
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<div class="q-pa-md q-gutter-md grid grid-cols-4">
|
|
8
|
+
<q-card class="my-card">
|
|
9
|
+
<q-card-section>
|
|
10
|
+
{{ lorem }}
|
|
11
|
+
</q-card-section>
|
|
12
|
+
</q-card>
|
|
13
|
+
|
|
14
|
+
<q-card
|
|
15
|
+
class="my-card text-white"
|
|
16
|
+
style="background: radial-gradient(circle, #35a2ff 0%, #014a88 100%)"
|
|
17
|
+
>
|
|
18
|
+
<q-card-section>
|
|
19
|
+
<div class="text-h6">Our Changing Planet</div>
|
|
20
|
+
<div class="text-subtitle2">by John Doe</div>
|
|
21
|
+
</q-card-section>
|
|
22
|
+
|
|
23
|
+
<q-card-section class="q-pt-none">21323
|
|
24
|
+
{{ lorem }}
|
|
25
|
+
</q-card-section>
|
|
26
|
+
</q-card>
|
|
27
|
+
|
|
28
|
+
<q-card dark bordered class="bg-grey-9 my-card">
|
|
29
|
+
<q-card-section>
|
|
30
|
+
<div class="text-h6">Our Changing Planet</div>
|
|
31
|
+
<div class="text-subtitle2">by John Doe</div>
|
|
32
|
+
</q-card-section>
|
|
33
|
+
|
|
34
|
+
<q-separator dark inset />
|
|
35
|
+
|
|
36
|
+
<q-card-section>
|
|
37
|
+
{{ lorem }}
|
|
38
|
+
</q-card-section>
|
|
39
|
+
</q-card>
|
|
40
|
+
|
|
41
|
+
<q-card flat bordered class="my-card">
|
|
42
|
+
<q-card-section>
|
|
43
|
+
<div class="text-h6">Our Changing Planet</div>
|
|
44
|
+
</q-card-section>
|
|
45
|
+
|
|
46
|
+
<q-card-section class="q-pt-none">
|
|
47
|
+
PPPP Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
|
48
|
+
tempor incididunt ut labore et dolore magna aliqua. dfsdfsadfsdfsddfsdfsdfsd
|
|
49
|
+
</q-card-section>
|
|
50
|
+
|
|
51
|
+
<q-separator inset />
|
|
52
|
+
|
|
53
|
+
<q-card-section>
|
|
54
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
|
55
|
+
tempor incididunt ut labore et dolore magna aliqua. sdfs
|
|
56
|
+
</q-card-section>
|
|
57
|
+
</q-card>
|
|
58
|
+
</div>
|
|
59
|
+
|
|
60
|
+
<q-btn class="q-ml-md" label="click me" color="primary" @click="store.increment">
|
|
61
|
+
{{ store.doubleCount }}
|
|
62
|
+
</q-btn>
|
|
63
|
+
</div>
|
|
64
|
+
</template>
|
|
65
|
+
|
|
66
|
+
<script setup lang="ts">
|
|
67
|
+
import { useCounterStore } from '../stores/example-store';
|
|
68
|
+
|
|
69
|
+
const store = useCounterStore()
|
|
70
|
+
|
|
71
|
+
const lorem= 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'
|
|
72
|
+
</script>
|
|
73
|
+
|
|
74
|
+
<style scoped>
|
|
75
|
+
|
|
76
|
+
</style>
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="q-pa-md q-gutter-md grid grid-cols-4">
|
|
3
|
-
<q-card class="my-card">
|
|
4
|
-
<q-card-section>
|
|
5
|
-
{{ lorem }}
|
|
6
|
-
</q-card-section>
|
|
7
|
-
</q-card>
|
|
8
|
-
|
|
9
|
-
<q-card
|
|
10
|
-
class="my-card text-white"
|
|
11
|
-
style="background: radial-gradient(circle, #35a2ff 0%, #014a88 100%)"
|
|
12
|
-
>
|
|
13
|
-
<q-card-section>
|
|
14
|
-
<div class="text-h6">Our Changing Planet</div>
|
|
15
|
-
<div class="text-subtitle2">by John Doe</div>
|
|
16
|
-
</q-card-section>
|
|
17
|
-
|
|
18
|
-
<q-card-section class="q-pt-none">21323
|
|
19
|
-
{{ lorem }}
|
|
20
|
-
</q-card-section>
|
|
21
|
-
</q-card>
|
|
22
|
-
|
|
23
|
-
<q-card dark bordered class="bg-grey-9 my-card">
|
|
24
|
-
<q-card-section>
|
|
25
|
-
<div class="text-h6">Our Changing Planet</div>
|
|
26
|
-
<div class="text-subtitle2">by John Doe</div>
|
|
27
|
-
</q-card-section>
|
|
28
|
-
|
|
29
|
-
<q-separator dark inset />
|
|
30
|
-
|
|
31
|
-
<q-card-section>
|
|
32
|
-
{{ lorem }}
|
|
33
|
-
</q-card-section>
|
|
34
|
-
</q-card>
|
|
35
|
-
|
|
36
|
-
<q-card flat bordered class="my-card">
|
|
37
|
-
<q-card-section>
|
|
38
|
-
<div class="text-h6">Our Changing Planet</div>
|
|
39
|
-
</q-card-section>
|
|
40
|
-
|
|
41
|
-
<q-card-section class="q-pt-none">
|
|
42
|
-
PPPP Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
|
43
|
-
tempor incididunt ut labore et dolore magna aliqua. dfsdfsadfsdfsddfsdfsdfsd
|
|
44
|
-
</q-card-section>
|
|
45
|
-
|
|
46
|
-
<q-separator inset />
|
|
47
|
-
|
|
48
|
-
<q-card-section>
|
|
49
|
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
|
50
|
-
tempor incididunt ut labore et dolore magna aliqua. sdfs
|
|
51
|
-
</q-card-section>
|
|
52
|
-
</q-card>
|
|
53
|
-
</div>
|
|
54
|
-
|
|
55
|
-
<div class="text-3xl font-bold underline">
|
|
56
|
-
Hello world 1!
|
|
57
|
-
</div>
|
|
58
|
-
|
|
59
|
-
<q-btn label="click me" color="primary" @click="store.increment">
|
|
60
|
-
{{ store.doubleCount }}</q-btn>
|
|
61
|
-
|
|
62
|
-
</template>
|
|
63
|
-
|
|
64
|
-
<script setup lang="ts">
|
|
65
|
-
import { useCounterStore } from '../stores/example-store';
|
|
66
|
-
|
|
67
|
-
const store = useCounterStore()
|
|
68
|
-
|
|
69
|
-
const lorem= 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'
|
|
70
|
-
</script>
|
|
71
|
-
|
|
72
|
-
<style scoped>
|
|
73
|
-
|
|
74
|
-
</style>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|