Hacker News new | ask | show | jobs
by ilurkedhere 2934 days ago
I'm confused. Wouldn't "native" imply it uses platform widgets rather than HTML?
2 comments

This is what React-Native (which Vue-Native is build upon) does.

Instead of

    <div>Hello</div>
you have

    <View><Text>Hello</Text></View>
Yes, but as opposed to a traditional GUI SDK, it's manipulating those widgets with JS, within a Vue.js architecture.