Upgrade to Pro — share decks privately, control downloads, hide ads and more …

やってみたよVueNative

 やってみたよVueNative

hitsuji-haneta

November 25, 2019
Tweet

More Decks by hitsuji-haneta

Other Decks in Programming

Transcript

  1. $ npm install —-global expo-cli vue-native-cli $ vue-native init <projectName>

    $ cd <projectName> $ npm run start どんな感じで作る? コンソールに出るよ!
  2. <template> <view class="container"> <text class="text-color-primary">My Vue Native App</text> </view> </template>

    <style> .container { background-color: white; align-items: center; justify-content: center; flex: 1; } .text-color-primary { color: blue; } </style>