-
|
Hi there, Curious to know if its possible to use UI libraries like vuetify with Iles. In a typical Vue SPA, it's added like yet another vue plugin - |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Ok. With regards to my above question, I did find the answer - I could use this Iles api - https://iles-docs.netlify.app/config#enhanceapp But, I did find something odd, for which I have logged a new issue - #180. Thank you! |
Beta Was this translation helpful? Give feedback.
-
|
It's possible to add Vuetify, and any other Vue plugins by using import { defineConfig } from 'iles'
import { createVuetify } from 'vuetify'
export default defineConfig({
enhanceApp ({ app }) {
const vuetify = createVuetify()
app.use(vuetify)
},
}) |
Beta Was this translation helpful? Give feedback.
It's possible to add Vuetify, and any other Vue plugins by using
enhanceApp: