create-quasar 2.1.1 → 2.2.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.
Files changed (153) hide show
  1. package/package.json +2 -4
  2. package/scripts/create-test-project.ts +1 -3
  3. package/templates/app/__eslint.config.js +0 -1
  4. package/templates/app/quasar-v2/create-quasar-script.js +4 -35
  5. package/templates/app/quasar-v2/js-vite-2/BASE/README.md +4 -4
  6. package/templates/app/quasar-v2/js-vite-2/BASE/_.vscode/extensions.json +2 -2
  7. package/templates/app/quasar-v2/js-vite-2/BASE/_.vscode/settings.json +2 -2
  8. package/templates/app/quasar-v2/js-vite-2/BASE/_package.json +11 -12
  9. package/templates/app/quasar-v2/js-vite-2/BASE/index.html +3 -3
  10. package/templates/app/quasar-v2/js-vite-2/BASE/quasar.config.js +9 -10
  11. package/templates/app/quasar-v2/js-vite-2/BASE/src/App.vue +0 -11
  12. package/templates/app/quasar-v2/js-vite-2/BASE/src/components/EssentialLink.vue +7 -35
  13. package/templates/app/quasar-v2/js-vite-2/BASE/src/layouts/MainLayout.vue +2 -141
  14. package/templates/app/quasar-v2/js-vite-2/BASE/src/pages/ErrorNotFound.vue +0 -11
  15. package/templates/app/quasar-v2/js-vite-2/BASE/src/pages/IndexPage.vue +0 -11
  16. package/templates/app/quasar-v2/js-vite-2/create-quasar-script.js +12 -4
  17. package/templates/app/quasar-v2/js-vite-2/eslint/_eslint.config.js +3 -3
  18. package/templates/app/quasar-v2/js-webpack-4/BASE/README.md +4 -4
  19. package/templates/app/quasar-v2/js-webpack-4/BASE/_.vscode/extensions.json +2 -2
  20. package/templates/app/quasar-v2/js-webpack-4/BASE/_.vscode/settings.json +2 -2
  21. package/templates/app/quasar-v2/js-webpack-4/BASE/_package.json +10 -11
  22. package/templates/app/quasar-v2/js-webpack-4/BASE/index.html +3 -3
  23. package/templates/app/quasar-v2/js-webpack-4/BASE/quasar.config.js +5 -6
  24. package/templates/app/quasar-v2/js-webpack-4/BASE/src/App.vue +0 -11
  25. package/templates/app/quasar-v2/js-webpack-4/BASE/src/components/EssentialLink.vue +7 -35
  26. package/templates/app/quasar-v2/js-webpack-4/BASE/src/layouts/MainLayout.vue +2 -141
  27. package/templates/app/quasar-v2/js-webpack-4/BASE/src/pages/ErrorNotFound.vue +0 -11
  28. package/templates/app/quasar-v2/js-webpack-4/BASE/src/pages/IndexPage.vue +0 -11
  29. package/templates/app/quasar-v2/js-webpack-4/create-quasar-script.js +12 -4
  30. package/templates/app/quasar-v2/js-webpack-4/eslint/_eslint.config.js +3 -3
  31. package/templates/app/quasar-v2/ts-vite-2/BASE/README.md +4 -4
  32. package/templates/app/quasar-v2/ts-vite-2/BASE/_.vscode/extensions.json +2 -2
  33. package/templates/app/quasar-v2/ts-vite-2/BASE/_.vscode/settings.json +2 -2
  34. package/templates/app/quasar-v2/ts-vite-2/BASE/_package.json +11 -12
  35. package/templates/app/quasar-v2/ts-vite-2/BASE/index.html +3 -3
  36. package/templates/app/quasar-v2/ts-vite-2/BASE/quasar.config.ts +9 -10
  37. package/templates/app/quasar-v2/ts-vite-2/BASE/src/App.vue +0 -11
  38. package/templates/app/quasar-v2/ts-vite-2/BASE/src/components/EssentialLink.vue +2 -37
  39. package/templates/app/quasar-v2/ts-vite-2/BASE/src/components/ExampleComponent.vue +2 -98
  40. package/templates/app/quasar-v2/ts-vite-2/BASE/src/layouts/MainLayout.vue +2 -141
  41. package/templates/app/quasar-v2/ts-vite-2/BASE/src/pages/ErrorNotFound.vue +0 -11
  42. package/templates/app/quasar-v2/ts-vite-2/BASE/src/pages/IndexPage.vue +2 -90
  43. package/templates/app/quasar-v2/ts-vite-2/__.eslintrc.cjs +0 -1
  44. package/templates/app/quasar-v2/ts-vite-2/create-quasar-script.js +12 -4
  45. package/templates/app/quasar-v2/ts-vite-2/eslint/_eslint.config.js +3 -3
  46. package/templates/app/quasar-v2/ts-vite-2/i18n/src/boot/i18n.ts +2 -2
  47. package/templates/app/quasar-v2/ts-webpack-4/BASE/README.md +4 -4
  48. package/templates/app/quasar-v2/ts-webpack-4/BASE/_.vscode/extensions.json +2 -2
  49. package/templates/app/quasar-v2/ts-webpack-4/BASE/_.vscode/settings.json +2 -2
  50. package/templates/app/quasar-v2/ts-webpack-4/BASE/_package.json +10 -11
  51. package/templates/app/quasar-v2/ts-webpack-4/BASE/index.html +3 -3
  52. package/templates/app/quasar-v2/ts-webpack-4/BASE/quasar.config.ts +5 -6
  53. package/templates/app/quasar-v2/ts-webpack-4/BASE/src/App.vue +0 -11
  54. package/templates/app/quasar-v2/ts-webpack-4/BASE/src/components/EssentialLink.vue +2 -37
  55. package/templates/app/quasar-v2/ts-webpack-4/BASE/src/components/ExampleComponent.vue +2 -98
  56. package/templates/app/quasar-v2/ts-webpack-4/BASE/src/layouts/MainLayout.vue +2 -141
  57. package/templates/app/quasar-v2/ts-webpack-4/BASE/src/pages/ErrorNotFound.vue +0 -11
  58. package/templates/app/quasar-v2/ts-webpack-4/BASE/src/pages/IndexPage.vue +2 -90
  59. package/templates/app/quasar-v2/ts-webpack-4/__.eslintrc.cjs +0 -1
  60. package/templates/app/quasar-v2/ts-webpack-4/create-quasar-script.js +12 -4
  61. package/templates/app/quasar-v2/ts-webpack-4/eslint/_eslint.config.js +3 -3
  62. package/templates/app/quasar-v2/ts-webpack-4/i18n/src/boot/i18n.ts +2 -2
  63. package/templates/app-extension/__eslint.config.js +1 -3
  64. package/templates/app-extension/ae-js/BASE/README.md +5 -5
  65. package/templates/app-extension/ae-js/BASE/_package.json +6 -6
  66. package/templates/app-extension/ae-js/BASE/src/index.js +1 -1
  67. package/templates/app-extension/ae-js/create-quasar-script.js +0 -15
  68. package/templates/app-extension/ae-js/install-script/src/install.js +1 -1
  69. package/templates/app-extension/ae-js/prompts-script/src/prompts.js +1 -1
  70. package/templates/app-extension/ae-js/uninstall-script/src/uninstall.js +1 -1
  71. package/templates/app-extension/ae-ts/BASE/README.md +6 -6
  72. package/templates/app-extension/ae-ts/BASE/_package.json +9 -9
  73. package/templates/app-extension/ae-ts/BASE/app-extension/README.md +7 -7
  74. package/templates/app-extension/ae-ts/BASE/app-extension/_package.json +9 -9
  75. package/templates/app-extension/ae-ts/BASE/app-extension/src/index.ts +2 -2
  76. package/templates/app-extension/ae-ts/BASE/app-extension/src/runtime/README.md +3 -3
  77. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-vite/README.md +11 -11
  78. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-vite/_package.json +4 -4
  79. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-vite/index.html +3 -3
  80. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-vite/quasar.extensions.json +1 -1
  81. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-vite/src/quasar.d.ts +1 -1
  82. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-webpack/README.md +10 -10
  83. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-webpack/_package.json +4 -4
  84. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-webpack/index.html +3 -3
  85. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-webpack/quasar.extensions.json +1 -1
  86. package/templates/app-extension/ae-ts/BASE/playground/quasar-cli-webpack/src/quasar.d.ts +1 -1
  87. package/templates/app-extension/create-quasar-script.js +1 -0
  88. package/templates/ui-kit/quasar-v2/BASE/LICENSE +1 -1
  89. package/templates/ui-kit/quasar-v2/BASE/README.md +4 -4
  90. package/templates/ui-kit/quasar-v2/BASE/ui/README.md +29 -29
  91. package/templates/ui-kit/quasar-v2/BASE/ui/_package.json +4 -4
  92. package/templates/ui-kit/quasar-v2/BASE/ui/build/index.js +1 -1
  93. package/templates/ui-kit/quasar-v2/BASE/ui/build/script.javascript.js +2 -2
  94. package/templates/ui-kit/quasar-v2/BASE/ui/dev/src/index.template.html +10 -5
  95. package/templates/ui-kit/quasar-v2/BASE/ui/dev/src/layouts/MyLayout.vue +1 -1
  96. package/templates/ui-kit/quasar-v2/BASE/ui/dev/src/pages/Test1.vue +4 -4
  97. package/templates/ui-kit/quasar-v2/BASE/ui/src/index.sass +2 -2
  98. package/templates/ui-kit/quasar-v2/BASE/ui/src/vue-plugin.js +6 -6
  99. package/templates/ui-kit/quasar-v2/BASE/ui/umd-test.html +2 -2
  100. package/templates/ui-kit/quasar-v2/ae/app-extension/README.md +6 -6
  101. package/templates/ui-kit/quasar-v2/ae/app-extension/_package.json +5 -5
  102. package/templates/ui-kit/quasar-v2/ae/app-extension/src/boot/register.js +1 -1
  103. package/templates/ui-kit/quasar-v2/ae/app-extension/src/index.js +7 -7
  104. package/templates/ui-kit/quasar-v2/ui-component/ui/src/components/Component.js +3 -3
  105. package/templates/ui-kit/quasar-v2/ui-component/ui/src/components/Component.sass +1 -1
  106. package/templates/ui-kit/quasar-v2/ui-directive/ui/src/directives/Directive.js +1 -1
  107. package/templates/ui-kit/quasar-v2/ui-directive/ui/src/directives/Directive.sass +1 -1
  108. package/utils/index.js +2 -6
  109. package/utils/template.js +280 -0
  110. package/templates/app/quasar-v2/js-vite-2/axios/src/boot/axios.js +0 -24
  111. package/templates/app/quasar-v2/js-vite-2/scss/src/css/app.scss +0 -1
  112. package/templates/app/quasar-v2/js-vite-2/scss/src/css/quasar.variables.scss +0 -25
  113. package/templates/app/quasar-v2/js-webpack-4/axios/src/boot/axios.js +0 -24
  114. package/templates/app/quasar-v2/js-webpack-4/scss/src/css/app.scss +0 -1
  115. package/templates/app/quasar-v2/js-webpack-4/scss/src/css/quasar.variables.scss +0 -25
  116. package/templates/app/quasar-v2/ts-vite-2/axios/src/boot/axios.ts +0 -31
  117. package/templates/app/quasar-v2/ts-vite-2/scss/src/css/app.scss +0 -1
  118. package/templates/app/quasar-v2/ts-vite-2/scss/src/css/quasar.variables.scss +0 -25
  119. package/templates/app/quasar-v2/ts-webpack-4/axios/src/boot/axios.ts +0 -31
  120. package/templates/app/quasar-v2/ts-webpack-4/scss/src/css/app.scss +0 -1
  121. package/templates/app/quasar-v2/ts-webpack-4/scss/src/css/quasar.variables.scss +0 -25
  122. package/test-project/.editorconfig +0 -7
  123. package/test-project/.prettierrc.json +0 -5
  124. package/test-project/.vscode/extensions.json +0 -15
  125. package/test-project/.vscode/settings.json +0 -9
  126. package/test-project/README.md +0 -43
  127. package/test-project/eslint.config.js +0 -83
  128. package/test-project/index.html +0 -24
  129. package/test-project/package.json +0 -45
  130. package/test-project/pnpm-lock.yaml +0 -5293
  131. package/test-project/pnpm-workspace.yaml +0 -6
  132. package/test-project/postcss.config.js +0 -29
  133. package/test-project/public/favicon.ico +0 -0
  134. package/test-project/public/icons/favicon-128x128.png +0 -0
  135. package/test-project/public/icons/favicon-16x16.png +0 -0
  136. package/test-project/public/icons/favicon-32x32.png +0 -0
  137. package/test-project/public/icons/favicon-96x96.png +0 -0
  138. package/test-project/quasar.config.ts +0 -217
  139. package/test-project/src/App.vue +0 -7
  140. package/test-project/src/assets/quasar-logo-vertical.svg +0 -15
  141. package/test-project/src/boot/.gitkeep +0 -0
  142. package/test-project/src/components/EssentialLink.vue +0 -27
  143. package/test-project/src/components/ExampleComponent.vue +0 -37
  144. package/test-project/src/components/models.ts +0 -8
  145. package/test-project/src/css/app.scss +0 -1
  146. package/test-project/src/css/quasar.variables.scss +0 -25
  147. package/test-project/src/env.d.ts +0 -7
  148. package/test-project/src/layouts/MainLayout.vue +0 -81
  149. package/test-project/src/pages/ErrorNotFound.vue +0 -23
  150. package/test-project/src/pages/IndexPage.vue +0 -43
  151. package/test-project/src/router/index.ts +0 -37
  152. package/test-project/src/router/routes.ts +0 -18
  153. package/test-project/tsconfig.json +0 -3
@@ -1,6 +0,0 @@
1
- # https://pnpm.io/settings
2
- shamefullyHoist: true
3
-
4
- onlyBuiltDependencies:
5
- - '@parcel/watcher'
6
- - esbuild
@@ -1,29 +0,0 @@
1
- // https://github.com/michael-ciniawsky/postcss-load-config
2
-
3
- import autoprefixer from 'autoprefixer';
4
- // import rtlcss from 'postcss-rtlcss'
5
-
6
- export default {
7
- plugins: [
8
- // https://github.com/postcss/autoprefixer
9
- autoprefixer({
10
- overrideBrowserslist: [
11
- 'last 4 Chrome versions',
12
- 'last 4 Firefox versions',
13
- 'last 4 Edge versions',
14
- 'last 4 Safari versions',
15
- 'last 4 Android versions',
16
- 'last 4 ChromeAndroid versions',
17
- 'last 4 FirefoxAndroid versions',
18
- 'last 4 iOS versions',
19
- ],
20
- }),
21
-
22
- // https://github.com/elchininet/postcss-rtlcss
23
- // If you want to support RTL css, then
24
- // 1. yarn/pnpm/bun/npm install postcss-rtlcss
25
- // 2. optionally set quasar.config.js > framework > lang to an RTL language
26
- // 3. uncomment the following line (and its import statement above):
27
- // rtlcss()
28
- ],
29
- };
Binary file
@@ -1,217 +0,0 @@
1
- // Configuration for your app
2
- // https://v2.quasar.dev/quasar-cli-vite/quasar-config-file
3
-
4
- import { defineConfig } from '#q-app/wrappers';
5
-
6
- export default defineConfig((/* ctx */) => {
7
- return {
8
- // https://v2.quasar.dev/quasar-cli-vite/prefetch-feature
9
- // preFetch: true,
10
-
11
- // app boot file (/src/boot)
12
- // --> boot files are part of "main.js"
13
- // https://v2.quasar.dev/quasar-cli-vite/boot-files
14
- boot: [],
15
-
16
- // https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#css
17
- css: ['app.scss'],
18
-
19
- // https://github.com/quasarframework/quasar/tree/dev/extras
20
- extras: [
21
- // 'ionicons-v4',
22
- // 'mdi-v7',
23
- // 'fontawesome-v6',
24
- // 'eva-icons',
25
- // 'themify',
26
- // 'line-awesome',
27
- // 'roboto-font-latin-ext', // this or either 'roboto-font', NEVER both!
28
-
29
- 'roboto-font', // optional, you are not bound to it
30
- 'material-icons', // optional, you are not bound to it
31
- ],
32
-
33
- // Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#build
34
- build: {
35
- target: {
36
- browser: 'baseline-widely-available',
37
- node: 'node22',
38
- },
39
-
40
- typescript: {
41
- strict: true,
42
- vueShim: true,
43
- // extendTsConfig (tsConfig) {}
44
- },
45
-
46
- vueRouterMode: 'hash', // available values: 'hash', 'history'
47
- // vueRouterBase,
48
- // vueDevtools,
49
- // vueOptionsAPI: false,
50
-
51
- // rebuildCache: true, // rebuilds Vite/linter/etc cache on startup
52
-
53
- // publicPath: '/',
54
- // analyze: true,
55
- // env: {},
56
- // rawDefine: {}
57
- // ignorePublicFolder: true,
58
- // minify: false,
59
- // polyfillModulePreload: true,
60
- // distDir
61
-
62
- // extendViteConf (viteConf) {},
63
- // viteVuePluginOptions: {},
64
-
65
- vitePlugins: [
66
- [
67
- 'vite-plugin-checker',
68
- {
69
- vueTsc: true,
70
- eslint: {
71
- lintCommand: 'eslint -c ./eslint.config.js "./src*/**/*.{ts,js,mjs,cjs,vue}"',
72
- useFlatConfig: true,
73
- },
74
- },
75
- { server: false },
76
- ],
77
- ],
78
- },
79
-
80
- // Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#devserver
81
- devServer: {
82
- // https: true,
83
- open: true, // opens browser window automatically
84
- },
85
-
86
- // https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#framework
87
- framework: {
88
- config: {},
89
-
90
- // iconSet: 'material-icons', // Quasar icon set
91
- // lang: 'en-US', // Quasar language pack
92
-
93
- // For special cases outside of where the auto-import strategy can have an impact
94
- // (like functional components as one of the examples),
95
- // you can manually specify Quasar components/directives to be available everywhere:
96
- //
97
- // components: [],
98
- // directives: [],
99
-
100
- // Quasar plugins
101
- plugins: [],
102
- },
103
-
104
- // animations: 'all', // --- includes all animations
105
- // https://v2.quasar.dev/options/animations
106
- animations: [],
107
-
108
- // https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#sourcefiles
109
- // sourceFiles: {
110
- // rootComponent: 'src/App.vue',
111
- // router: 'src/router/index',
112
- // store: 'src/store/index',
113
- // pwaRegisterServiceWorker: 'src-pwa/register-service-worker',
114
- // pwaServiceWorker: 'src-pwa/custom-service-worker',
115
- // pwaManifestFile: 'src-pwa/manifest.json',
116
- // electronMain: 'src-electron/electron-main',
117
- // electronPreload: 'src-electron/electron-preload'
118
- // bexManifestFile: 'src-bex/manifest.json
119
- // },
120
-
121
- // https://v2.quasar.dev/quasar-cli-vite/developing-ssr/configuring-ssr
122
- ssr: {
123
- prodPort: 3000, // The default port that the production server should use
124
- // (gets superseded if process.env.PORT is specified at runtime)
125
-
126
- middlewares: [
127
- 'render', // keep this as last one
128
- ],
129
-
130
- // extendPackageJson (json) {},
131
- // extendSSRWebserverConf (esbuildConf) {},
132
-
133
- // manualStoreSerialization: true,
134
- // manualStoreSsrContextInjection: true,
135
- // manualStoreHydration: true,
136
- // manualPostHydrationTrigger: true,
137
-
138
- pwa: false,
139
- // pwaOfflineHtmlFilename: 'offline.html', // do NOT use index.html as name!
140
-
141
- // pwaExtendGenerateSWOptions (cfg) {},
142
- // pwaExtendInjectManifestOptions (cfg) {}
143
- },
144
-
145
- // https://v2.quasar.dev/quasar-cli-vite/developing-pwa/configuring-pwa
146
- pwa: {
147
- workboxMode: 'GenerateSW', // 'GenerateSW' or 'InjectManifest'
148
- // swFilename: 'sw.js',
149
- // manifestFilename: 'manifest.json',
150
- // extendManifestJson (json) {},
151
- // useCredentialsForManifestTag: true,
152
- // injectPwaMetaTags: false,
153
- // extendPWACustomSWConf (esbuildConf) {},
154
- // extendGenerateSWOptions (cfg) {},
155
- // extendInjectManifestOptions (cfg) {}
156
- },
157
-
158
- // Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-cordova-apps/configuring-cordova
159
- cordova: {
160
- // noIosLegacyBuildFlag: true, // uncomment only if you know what you are doing
161
- },
162
-
163
- // Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-capacitor-apps/configuring-capacitor
164
- capacitor: {
165
- hideSplashscreen: true,
166
- },
167
-
168
- // Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-electron-apps/configuring-electron
169
- electron: {
170
- // extendElectronMainConf (esbuildConf) {},
171
- // extendElectronPreloadConf (esbuildConf) {},
172
-
173
- // extendPackageJson (json) {},
174
-
175
- // Electron preload scripts (if any) from /src-electron, WITHOUT file extension
176
- preloadScripts: ['electron-preload'],
177
-
178
- // specify the debugging port to use for the Electron app when running in development mode
179
- inspectPort: 5858,
180
-
181
- bundler: 'packager', // 'packager' or 'builder'
182
-
183
- packager: {
184
- // https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options
185
- // OS X / Mac App Store
186
- // appBundleId: '',
187
- // appCategoryType: '',
188
- // osxSign: '',
189
- // protocol: 'myapp://path',
190
- // Windows only
191
- // win32metadata: { ... }
192
- },
193
-
194
- builder: {
195
- // https://www.electron.build/configuration
196
-
197
- appId: 'test-project',
198
- },
199
- },
200
-
201
- // Full list of options: https://v2.quasar.dev/quasar-cli-vite/developing-browser-extensions/configuring-bex
202
- bex: {
203
- // extendBexScriptsConf (esbuildConf) {},
204
- // extendBexManifestJson (json) {},
205
-
206
- /**
207
- * The list of extra scripts (js/ts) not in your bex manifest that you want to
208
- * compile and use in your browser extension. Maybe dynamic use them?
209
- *
210
- * Each entry in the list should be a relative filename to /src-bex/
211
- *
212
- * @example [ 'my-script.ts', 'sub-folder/my-other-script.js' ]
213
- */
214
- extraScripts: [],
215
- },
216
- };
217
- });
@@ -1,7 +0,0 @@
1
- <template>
2
- <router-view />
3
- </template>
4
-
5
- <script setup lang="ts">
6
- //
7
- </script>
@@ -1,15 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 356 360">
2
- <path
3
- d="M43.4 303.4c0 3.8-2.3 6.3-7.1 6.3h-15v-22h14.4c4.3 0 6.2 2.2 6.2 5.2 0 2.6-1.5 4.4-3.4 5 2.8.4 4.9 2.5 4.9 5.5zm-8-13H24.1v6.9H35c2.1 0 4-1.3 4-3.8 0-2.2-1.3-3.1-3.7-3.1zm5.1 12.6c0-2.3-1.8-3.7-4-3.7H24.2v7.7h11.7c3.4 0 4.6-1.8 4.6-4zm36.3 4v2.7H56v-22h20.6v2.7H58.9v6.8h14.6v2.3H58.9v7.5h17.9zm23-5.8v8.5H97v-8.5l-11-13.4h3.4l8.9 11 8.8-11h3.4l-10.8 13.4zm19.1-1.8V298c0-7.9 5.2-10.7 12.7-10.7 7.5 0 13 2.8 13 10.7v1.4c0 7.9-5.5 10.8-13 10.8s-12.7-3-12.7-10.8zm22.7 0V298c0-5.7-3.9-8-10-8-6 0-9.8 2.3-9.8 8v1.4c0 5.8 3.8 8.1 9.8 8.1 6 0 10-2.3 10-8.1zm37.2-11.6v21.9h-2.9l-15.8-17.9v17.9h-2.8v-22h3l15.6 18v-18h2.9zm37.9 10.2v1.3c0 7.8-5.2 10.4-12.4 10.4H193v-22h11.2c7.2 0 12.4 2.8 12.4 10.3zm-3 0c0-5.3-3.3-7.6-9.4-7.6h-8.4V307h8.4c6 0 9.5-2 9.5-7.7V298zm50.8-7.6h-9.7v19.3h-3v-19.3h-9.7v-2.6h22.4v2.6zm34.4-2.6v21.9h-3v-10.1h-16.8v10h-2.8v-21.8h2.8v9.2H296v-9.2h2.9zm34.9 19.2v2.7h-20.7v-22h20.6v2.7H316v6.8h14.5v2.3H316v7.5h17.8zM24 340.2v7.3h13.9v2.4h-14v9.6H21v-22h20v2.7H24zm41.5 11.4h-9.8v7.9H53v-22h13.3c5.1 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6H66c3.1 0 5.3-1.5 5.3-4.7 0-3.3-2.2-4.1-5.3-4.1H55.7v8.8zm47.9 6.2H89l-2 4.3h-3.2l10.7-22.2H98l10.7 22.2h-3.2l-2-4.3zm-1-2.3l-6.3-13-6 13h12.2zm46.3-15.3v21.9H146v-17.2L135.7 358h-2.1l-10.2-15.6v17h-2.8v-21.8h3l11 16.9 11.3-17h3zm35 19.3v2.6h-20.7v-22h20.6v2.7H166v6.8h14.5v2.3H166v7.6h17.8zm47-19.3l-8.3 22h-3l-7.1-18.6-7 18.6h-3l-8.2-22h3.3L204 356l6.8-18.5h3.4L221 356l6.6-18.5h3.3zm10 11.6v-1.4c0-7.8 5.2-10.7 12.7-10.7 7.6 0 13 2.9 13 10.7v1.4c0 7.9-5.4 10.8-13 10.8-7.5 0-12.7-3-12.7-10.8zm22.8 0v-1.4c0-5.7-4-8-10-8s-9.9 2.3-9.9 8v1.4c0 5.8 3.8 8.2 9.8 8.2 6.1 0 10-2.4 10-8.2zm28.3 2.4h-9.8v7.9h-2.8v-22h13.2c5.2 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6h10.2c3 0 5.2-1.5 5.2-4.7 0-3.3-2.1-4.1-5.2-4.1h-10.2v8.8zm40.3-1.5l-6.8 5.6v6.4h-2.9v-22h2.9v12.3l15.2-12.2h3.7l-9.9 8.1 10.3 13.8h-3.6l-8.9-12z" />
4
- <path fill="#050A14"
5
- d="M188.4 71.7a10.4 10.4 0 01-20.8 0 10.4 10.4 0 1120.8 0zM224.2 45c-2.2-3.9-5-7.5-8.2-10.7l-12 7c-3.7-3.2-8-5.7-12.6-7.3a49.4 49.4 0 00-9.7 13.9 59 59 0 0140.1 14l7.6-4.4a57 57 0 00-5.2-12.5zM178 125.1c4.5 0 9-.6 13.4-1.7v-14a40 40 0 0012.5-7.2 47.7 47.7 0 00-7.1-15.3 59 59 0 01-32.2 27.7v8.7c4.4 1.2 8.9 1.8 13.4 1.8zM131.8 45c-2.3 4-4 8.1-5.2 12.5l12 7a40 40 0 000 14.4c5.7 1.5 11.3 2 16.9 1.5a59 59 0 01-8-41.7l-7.5-4.3c-3.2 3.2-6 6.7-8.2 10.6z" />
6
- <path fill="#00B4FF"
7
- d="M224.2 98.4c2.3-3.9 4-8 5.2-12.4l-12-7a40 40 0 000-14.5c-5.7-1.5-11.3-2-16.9-1.5a59 59 0 018 41.7l7.5 4.4c3.2-3.2 6-6.8 8.2-10.7zm-92.4 0c2.2 4 5 7.5 8.2 10.7l12-7a40 40 0 0012.6 7.3c4-4.1 7.3-8.8 9.7-13.8a59 59 0 01-40-14l-7.7 4.4c1.2 4.3 3 8.5 5.2 12.4zm46.2-80c-4.5 0-9 .5-13.4 1.7V34a40 40 0 00-12.5 7.2c1.5 5.7 4 10.8 7.1 15.4a59 59 0 0132.2-27.7V20a53.3 53.3 0 00-13.4-1.8z" />
8
- <path fill="#00B4FF"
9
- d="M178 9.2a62.6 62.6 0 11-.1 125.2A62.6 62.6 0 01178 9.2m0-9.2a71.7 71.7 0 100 143.5A71.7 71.7 0 00178 0z" />
10
- <path fill="#050A14"
11
- d="M96.6 212v4.3c-9.2-.8-15.4-5.8-15.4-17.8V180h4.6v18.4c0 8.6 4 12.6 10.8 13.5zm16-31.9v18.4c0 8.9-4.3 12.8-10.9 13.5v4.4c9.2-.7 15.5-5.6 15.5-18v-18.3h-4.7zM62.2 199v-2.2c0-12.7-8.8-17.4-21-17.4-12.1 0-20.7 4.7-20.7 17.4v2.2c0 12.8 8.6 17.6 20.7 17.6 1.5 0 3-.1 4.4-.3l11.8 6.2 2-3.3-8.2-4-6.4-3.1a32 32 0 01-3.6.2c-9.8 0-16-3.9-16-13.3v-2.2c0-9.3 6.2-13.1 16-13.1 9.9 0 16.3 3.8 16.3 13.1v2.2c0 5.3-2.1 8.7-5.6 10.8l4.8 2.4c3.4-2.8 5.5-7 5.5-13.2zM168 215.6h5.1L156 179.7h-4.8l17 36zM143 205l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.8-3.7H143zm133.7 10.7h5.2l-17.3-35.9h-4.8l17 36zm-25-10.7l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.7-3.7h-14.8zm73.8-2.5c6-1.2 9-5.4 9-11.4 0-8-4.5-10.9-12.9-10.9h-21.4v35.5h4.6v-31.3h16.5c5 0 8.5 1.4 8.5 6.7 0 5.2-3.5 7.7-8.5 7.7h-11.4v4.1h10.7l9.3 12.8h5.5l-9.9-13.2zm-117.4 9.9c-9.7 0-14.7-2.5-18.6-6.3l-2.2 3.8c5.1 5 11 6.7 21 6.7 1.6 0 3.1-.1 4.6-.3l-1.9-4h-3zm18.4-7c0-6.4-4.7-8.6-13.8-9.4l-10.1-1c-6.7-.7-9.3-2.2-9.3-5.6 0-2.5 1.4-4 4.6-5l-1.8-3.8c-4.7 1.4-7.5 4.2-7.5 8.9 0 5.2 3.4 8.7 13 9.6l11.3 1.2c6.4.6 8.9 2 8.9 5.4 0 2.7-2.1 4.7-6 5.8l1.8 3.9c5.3-1.6 8.9-4.7 8.9-10zm-20.3-21.9c7.9 0 13.3 1.8 18.1 5.7l1.8-3.9a30 30 0 00-19.6-5.9c-2 0-4 .1-5.7.3l1.9 4 3.5-.2z" />
12
- <path fill="#00B4FF"
13
- d="M.5 251.9c29.6-.5 59.2-.8 88.8-1l88.7-.3 88.7.3 44.4.4 44.4.6-44.4.6-44.4.4-88.7.3-88.7-.3a7981 7981 0 01-88.8-1z" />
14
- <path fill="none" d="M-565.2 324H-252v15.8h-313.2z" />
15
- </svg>
File without changes
@@ -1,27 +0,0 @@
1
- <template>
2
- <q-item clickable tag="a" target="_blank" :href="link">
3
- <q-item-section v-if="icon" avatar>
4
- <q-icon :name="icon" />
5
- </q-item-section>
6
-
7
- <q-item-section>
8
- <q-item-label>{{ title }}</q-item-label>
9
- <q-item-label caption>{{ caption }}</q-item-label>
10
- </q-item-section>
11
- </q-item>
12
- </template>
13
-
14
- <script setup lang="ts">
15
- export interface EssentialLinkProps {
16
- title: string;
17
- caption?: string;
18
- link?: string;
19
- icon?: string;
20
- }
21
-
22
- withDefaults(defineProps<EssentialLinkProps>(), {
23
- caption: '',
24
- link: '#',
25
- icon: '',
26
- });
27
- </script>
@@ -1,37 +0,0 @@
1
- <template>
2
- <div>
3
- <p>{{ title }}</p>
4
- <ul>
5
- <li v-for="todo in todos" :key="todo.id" @click="increment">
6
- {{ todo.id }} - {{ todo.content }}
7
- </li>
8
- </ul>
9
- <p>Count: {{ todoCount }} / {{ meta.totalCount }}</p>
10
- <p>Active: {{ active ? 'yes' : 'no' }}</p>
11
- <p>Clicks on todos: {{ clickCount }}</p>
12
- </div>
13
- </template>
14
-
15
- <script setup lang="ts">
16
- import { computed, ref } from 'vue';
17
- import type { Todo, Meta } from './models';
18
-
19
- interface Props {
20
- title: string;
21
- todos?: Todo[];
22
- meta: Meta;
23
- active: boolean;
24
- }
25
-
26
- const props = withDefaults(defineProps<Props>(), {
27
- todos: () => [],
28
- });
29
-
30
- const clickCount = ref(0);
31
- function increment() {
32
- clickCount.value += 1;
33
- return clickCount.value;
34
- }
35
-
36
- const todoCount = computed(() => props.todos.length);
37
- </script>
@@ -1,8 +0,0 @@
1
- export interface Todo {
2
- id: number;
3
- content: string;
4
- }
5
-
6
- export interface Meta {
7
- totalCount: number;
8
- }
@@ -1 +0,0 @@
1
- // app global css in SCSS form
@@ -1,25 +0,0 @@
1
- // Quasar SCSS (& Sass) Variables
2
- // --------------------------------------------------
3
- // To customize the look and feel of this app, you can override
4
- // the Sass/SCSS variables found in Quasar's source Sass/SCSS files.
5
-
6
- // Check documentation for full list of Quasar variables
7
-
8
- // Your own variables (that are declared here) and Quasar's own
9
- // ones will be available out of the box in your .vue/.scss/.sass files
10
-
11
- // It's highly recommended to change the default colors
12
- // to match your app's branding.
13
- // Tip: Use the "Theme Builder" on Quasar's documentation website.
14
-
15
- $primary: #1976d2;
16
- $secondary: #26a69a;
17
- $accent: #9c27b0;
18
-
19
- $dark: #1d1d1d;
20
- $dark-page: #121212;
21
-
22
- $positive: #21ba45;
23
- $negative: #c10015;
24
- $info: #31ccec;
25
- $warning: #f2c037;
@@ -1,7 +0,0 @@
1
- declare namespace NodeJS {
2
- interface ProcessEnv {
3
- NODE_ENV: string;
4
- VUE_ROUTER_MODE: 'hash' | 'history' | 'abstract' | undefined;
5
- VUE_ROUTER_BASE: string | undefined;
6
- }
7
- }
@@ -1,81 +0,0 @@
1
- <template>
2
- <q-layout view="lHh Lpr lFf">
3
- <q-header elevated>
4
- <q-toolbar>
5
- <q-btn flat dense round icon="menu" aria-label="Menu" @click="toggleLeftDrawer" />
6
-
7
- <q-toolbar-title> Quasar App </q-toolbar-title>
8
-
9
- <div>Quasar v{{ $q.version }}</div>
10
- </q-toolbar>
11
- </q-header>
12
-
13
- <q-drawer v-model="leftDrawerOpen" show-if-above bordered>
14
- <q-list>
15
- <q-item-label header> Essential Links </q-item-label>
16
-
17
- <EssentialLink v-for="link in linksList" :key="link.title" v-bind="link" />
18
- </q-list>
19
- </q-drawer>
20
-
21
- <q-page-container>
22
- <router-view />
23
- </q-page-container>
24
- </q-layout>
25
- </template>
26
-
27
- <script setup lang="ts">
28
- import { ref } from 'vue';
29
- import EssentialLink, { type EssentialLinkProps } from 'components/EssentialLink.vue';
30
-
31
- const linksList: EssentialLinkProps[] = [
32
- {
33
- title: 'Docs',
34
- caption: 'quasar.dev',
35
- icon: 'school',
36
- link: 'https://quasar.dev',
37
- },
38
- {
39
- title: 'Github',
40
- caption: 'github.com/quasarframework',
41
- icon: 'code',
42
- link: 'https://github.com/quasarframework',
43
- },
44
- {
45
- title: 'Discord Chat Channel',
46
- caption: 'chat.quasar.dev',
47
- icon: 'chat',
48
- link: 'https://chat.quasar.dev',
49
- },
50
- {
51
- title: 'Forum',
52
- caption: 'forum.quasar.dev',
53
- icon: 'record_voice_over',
54
- link: 'https://forum.quasar.dev',
55
- },
56
- {
57
- title: 'Twitter',
58
- caption: '@quasarframework',
59
- icon: 'rss_feed',
60
- link: 'https://twitter.quasar.dev',
61
- },
62
- {
63
- title: 'Facebook',
64
- caption: '@QuasarFramework',
65
- icon: 'public',
66
- link: 'https://facebook.quasar.dev',
67
- },
68
- {
69
- title: 'Quasar Awesome',
70
- caption: 'Community Quasar projects',
71
- icon: 'favorite',
72
- link: 'https://awesome.quasar.dev',
73
- },
74
- ];
75
-
76
- const leftDrawerOpen = ref(false);
77
-
78
- function toggleLeftDrawer() {
79
- leftDrawerOpen.value = !leftDrawerOpen.value;
80
- }
81
- </script>
@@ -1,23 +0,0 @@
1
- <template>
2
- <div class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center">
3
- <div>
4
- <div style="font-size: 30vh">404</div>
5
-
6
- <div class="text-h2" style="opacity: 0.4">Oops. Nothing here...</div>
7
-
8
- <q-btn
9
- class="q-mt-xl"
10
- color="white"
11
- text-color="blue"
12
- unelevated
13
- to="/"
14
- label="Go Home"
15
- no-caps
16
- />
17
- </div>
18
- </div>
19
- </template>
20
-
21
- <script setup lang="ts">
22
- //
23
- </script>
@@ -1,43 +0,0 @@
1
- <template>
2
- <q-page class="row items-center justify-evenly">
3
- <example-component
4
- title="Example component"
5
- active
6
- :todos="todos"
7
- :meta="meta"
8
- ></example-component>
9
- </q-page>
10
- </template>
11
-
12
- <script setup lang="ts">
13
- import { ref } from 'vue';
14
- import type { Todo, Meta } from 'components/models';
15
- import ExampleComponent from 'components/ExampleComponent.vue';
16
-
17
- const todos = ref<Todo[]>([
18
- {
19
- id: 1,
20
- content: 'ct1',
21
- },
22
- {
23
- id: 2,
24
- content: 'ct2',
25
- },
26
- {
27
- id: 3,
28
- content: 'ct3',
29
- },
30
- {
31
- id: 4,
32
- content: 'ct4',
33
- },
34
- {
35
- id: 5,
36
- content: 'ct5',
37
- },
38
- ]);
39
-
40
- const meta = ref<Meta>({
41
- totalCount: 1200,
42
- });
43
- </script>
@@ -1,37 +0,0 @@
1
- import { defineRouter } from '#q-app/wrappers';
2
- import {
3
- createMemoryHistory,
4
- createRouter,
5
- createWebHashHistory,
6
- createWebHistory,
7
- } from 'vue-router';
8
- import routes from './routes';
9
-
10
- /*
11
- * If not building with SSR mode, you can
12
- * directly export the Router instantiation;
13
- *
14
- * The function below can be async too; either use
15
- * async/await or return a Promise which resolves
16
- * with the Router instance.
17
- */
18
-
19
- export default defineRouter(function (/* { store, ssrContext } */) {
20
- const createHistory = process.env.SERVER
21
- ? createMemoryHistory
22
- : process.env.VUE_ROUTER_MODE === 'history'
23
- ? createWebHistory
24
- : createWebHashHistory;
25
-
26
- const Router = createRouter({
27
- scrollBehavior: () => ({ left: 0, top: 0 }),
28
- routes,
29
-
30
- // Leave this as is and make changes in quasar.conf.js instead!
31
- // quasar.conf.js -> build -> vueRouterMode
32
- // quasar.conf.js -> build -> publicPath
33
- history: createHistory(process.env.VUE_ROUTER_BASE),
34
- });
35
-
36
- return Router;
37
- });
@@ -1,18 +0,0 @@
1
- import type { RouteRecordRaw } from 'vue-router';
2
-
3
- const routes: RouteRecordRaw[] = [
4
- {
5
- path: '/',
6
- component: () => import('layouts/MainLayout.vue'),
7
- children: [{ path: '', component: () => import('pages/IndexPage.vue') }],
8
- },
9
-
10
- // Always leave this as last one,
11
- // but you can also remove it
12
- {
13
- path: '/:catchAll(.*)*',
14
- component: () => import('pages/ErrorNotFound.vue'),
15
- },
16
- ];
17
-
18
- export default routes;
@@ -1,3 +0,0 @@
1
- {
2
- "extends": "./.quasar/tsconfig.json"
3
- }