Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Vue JS x React JS
Search
Engel
July 25, 2019
Programming
1
13
Vue JS x React JS
Uma breve comparação de uma aplicação desenvolvida nas duas tecnologias.
Engel
July 25, 2019
Tweet
Share
Other Decks in Programming
See All in Programming
Rails Frontend Evolution: It Was a Setup All Along
skryukov
0
120
10 Costly Database Performance Mistakes (And How To Fix Them)
andyatkinson
0
300
Flutterで備える!Accessibility Nutrition Labels完全ガイド
yuukiw00w
0
160
今ならAmazon ECSのサービス間通信をどう選ぶか / Selection of ECS Interservice Communication 2025
tkikuc
21
3.9k
Railsアプリケーションと パフォーマンスチューニング ー 秒間5万リクエストの モバイルオーダーシステムを支える事例 ー Rubyセミナー 大阪
falcon8823
5
1.1k
すべてのコンテキストを、 ユーザー価値に変える
applism118
3
1.2k
Kotlin エンジニアへ送る:Swift 案件に参加させられる日に備えて~似てるけど色々違う Swift の仕様 / from Kotlin to Swift
lovee
1
270
ソフトウェア品質を数字で捉える技術。事業成長を支えるシステム品質の マネジメント
takuya542
1
12k
Quand Symfony, ApiPlatform, OpenAI et LangChain s'allient pour exploiter vos PDF : de la théorie à la production…
ahmedbhs123
0
180
生成AI時代のコンポーネントライブラリの作り方
touyou
1
210
「Cursor/Devin全社導入の理想と現実」のその後
saitoryc
0
810
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
580
Featured
See All Featured
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
The Cult of Friendly URLs
andyhume
79
6.5k
Become a Pro
speakerdeck
PRO
29
5.4k
Measuring & Analyzing Core Web Vitals
bluesmoon
7
510
Agile that works and the tools we love
rasmusluckow
329
21k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
Raft: Consensus for Rubyists
vanstee
140
7k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
130
19k
Embracing the Ebb and Flow
colly
86
4.7k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
49
5.5k
We Have a Design System, Now What?
morganepeng
53
7.7k
Transcript
VUE JS X REACT JS
REQUISITOS • NODE • NPM OU YARN
CRIAR UMA APLICAÇÃO • vue-cli • npm install -g @vue/cli
• vue create my-project • create-react-app • npm install -g create-react-app • npm init react-app my-app VUE JS REAT JS
CSS VUE JS REAT JS
DADOS VUE JS REAT JS this.name = “John” this.setState({ name:“John”})
PROPS VUE JS REAT JS props: [“exemplo”] <Component v-bind:exemplo =
“exemplo” /> this.props.exemplo <Component exemplo= {exemplo}/>
ROUTER VUE JS REAT JS
BIBLIOGRAFIA