Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
MKCLOS
Core Development Platform
TemplateProjects
FullstackTemplate-Formkit-Tailwind
Commits
a07aa3ca
There was an error fetching the commit references. Please try again later.
Commit
a07aa3ca
authored
1 year ago
by
Somnath Ghorpade
Browse files
Options
Downloads
Patches
Plain Diff
store and warning resolved.
parent
78762489
2 merge requests
!2
Added composition API support for all features.
,
!1
initial commit.
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
app/assets/plugins/bootstrap/bootstrap-grid.min.css
+1
-2
app/assets/plugins/bootstrap/bootstrap-grid.min.css
app/assets/plugins/bootstrap/bootstrap-utilities.min.css
+1
-2
app/assets/plugins/bootstrap/bootstrap-utilities.min.css
app/package.json
+1
-0
app/package.json
app/src/main.js
+6
-7
app/src/main.js
with
9 additions
and
11 deletions
app/assets/plugins/bootstrap/bootstrap-grid.min.css
+
1
−
2
View file @
a07aa3ca
This diff is collapsed.
Click to expand it.
app/assets/plugins/bootstrap/bootstrap-utilities.min.css
+
1
−
2
View file @
a07aa3ca
This diff is collapsed.
Click to expand it.
app/package.json
+
1
−
0
View file @
a07aa3ca
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
"fs-extra"
:
"^8.1.0"
,
"fs-extra"
:
"^8.1.0"
,
"material-design-icons"
:
"^3.0.1"
,
"material-design-icons"
:
"^3.0.1"
,
"pinia"
:
"^2.1.3"
,
"pinia"
:
"^2.1.3"
,
"pinia-plugin-persistedstate"
:
"^3.1.0"
,
"readline-sync"
:
"^1.4.10"
,
"readline-sync"
:
"^1.4.10"
,
"register-service-worker"
:
"^1.6.2"
,
"register-service-worker"
:
"^1.6.2"
,
"sass"
:
"^1.54.4"
,
"sass"
:
"^1.54.4"
,
...
...
This diff is collapsed.
Click to expand it.
app/src/main.js
+
6
−
7
View file @
a07aa3ca
import
{
createApp
,
h
}
from
'
vue
'
import
{
createApp
,
h
}
from
'
vue
'
import
VueClipboard
from
'
vue3-clipboard
'
import
App
from
'
./App.vue
'
import
App
from
'
./App.vue
'
import
router
from
'
./router
'
import
router
from
'
./router
'
import
'
./registerServiceWorker
'
import
mqlOptions
from
'
./plugins/mqlOptions.js
'
import
mqlOptions
from
'
./plugins/mqlOptions.js
'
import
{
loadLanguageAsync
,
i18n
}
from
'
./setup/i18n-setup.js
'
import
{
loadLanguageAsync
,
i18n
}
from
'
./setup/i18n-setup.js
'
import
{
createMetaManager
}
from
"
vue-meta
"
;
import
{
createMetaManager
}
from
"
vue-meta
"
;
...
@@ -15,11 +13,16 @@ import "./index.css"
...
@@ -15,11 +13,16 @@ import "./index.css"
import
{
plugin
,
defaultConfig
}
from
'
@formkit/vue
'
import
{
plugin
,
defaultConfig
}
from
'
@formkit/vue
'
import
formKitConfig
from
'
./formkit.config
'
import
formKitConfig
from
'
./formkit.config
'
import
{
createPinia
}
from
'
pinia
'
import
{
createPinia
}
from
'
pinia
'
import
piniaPluginPersistedstate
from
'
pinia-plugin-persistedstate
'
const
piniaStore
=
createPinia
()
const
piniaStore
=
createPinia
()
const
isProduction
=
process
.
env
.
NODE_ENV
===
'
production
'
piniaStore
.
use
(
piniaPluginPersistedstate
)
var
vm
=
createApp
({
var
vm
=
createApp
({
render
:
()
=>
h
(
App
),
render
:
()
=>
h
(
App
),
})
})
//
window.app = vm
window
.
app
=
vm
vm
.
use
(
piniaStore
)
vm
.
use
(
piniaStore
)
vm
.
$router
=
router
vm
.
$router
=
router
vm
.
use
(
i18n
)
vm
.
use
(
i18n
)
...
@@ -27,10 +30,6 @@ vm.use(router)
...
@@ -27,10 +30,6 @@ vm.use(router)
vm
.
use
(
plugin
,
defaultConfig
(
formKitConfig
))
vm
.
use
(
plugin
,
defaultConfig
(
formKitConfig
))
vm
.
use
(
defaultConfig
)
vm
.
use
(
defaultConfig
)
vm
.
use
(
createMetaManager
())
vm
.
use
(
createMetaManager
())
vm
.
use
(
VueClipboard
,
{
autoSetContainer
:
true
,
appendToBody
:
true
,
})
vm
.
use
(
Toaster
,
{
vm
.
use
(
Toaster
,
{
position
:
"
top-right
"
,
position
:
"
top-right
"
,
duration
:
3000
duration
:
3000
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets