Can I import and use Vue component inside Vue native component?

170 views Asked by At

I am new in Vue native also I encountered a question which is, can I use the Vue component inside a Vue native component such as Vue-chart and etc.....

1

There are 1 answers

0
dark On

Every component you should use working with vue native should be react native components.... Just install the react native component, import it and rewrite the usage the vue way and it is going to work....you don't have to use vue components since vue native is just a wrapper around react native. Working with vue native, what you are actually working with is react native...so everything you can do with react native, you can do using vue native. If you want to use chart, look for react native chart component and use that instead.