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.....
-
Have you tried…?Martin Bean– Martin Bean2020-12-14 12:55:39 +00:00Commented Dec 14, 2020 at 12:55
-
Not now, that why I am just in R&D to choose Vue native or not.Hozhabr– Hozhabr2020-12-14 12:58:00 +00:00Commented Dec 14, 2020 at 12:58
-
Maybe do a little R&D to see if using the component in a Vue native component works then? You’d get the answer much quicker if you just tried instead of creating a Stack Overflow question where someone else would have to try it and give you the answer.Martin Bean– Martin Bean2020-12-14 13:16:17 +00:00Commented Dec 14, 2020 at 13:16
Add a comment
|
1 Answer
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.