zircleUI / zircleUI

🚀 zircle-ui is a frontend library to develop zoomable user interfaces.

Home Page:https://zircleui.github.io/docs/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how can i use zircleUI with Vue 3

biloo-dev opened this issue · comments

i have project with vue 3 and ionic 5

dd

how can i fix this error please

image

Hi @biloo-dev sorry for the delay! I'll take a look asap to give you an answer. Nowadays zircle is working for vue 2.x, but I'll try to fix for you

Thank you very much @tinchox5 . I will be very grateful to you for your cooperation
I will be waiting for you

No problem, I have found some guides to adapt 2.xx libraries to 3.x.x. Give some time I'll fix

commented

Hi! Any updates?

Guys, I had Zircle working on Vue 3, but I need to fix many vue warns yet.

Well, I think zircle is now Vue3 compatible.

Please check Vue3 branch https://github.com/zircleUI/zircleUI/tree/vue3

Also, you can install the package npm install zircle@vue3

I worked on the dev branch, so this version of Zircle has some undocumented features. Please see #23

I forget to mention that when you define your views follow this in order to prevent some Vue warns in console:

import { markRaw } from 'vue'
import home from './demo/home.vue'
import docs from './demo/docs.vue'
export default {
  components: {
    home: markRaw(home),
    docs: markRaw(docs)
  }
```