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
ユーザーも開発者も悩ませない TV アプリ開発 ~Compose の内部実装から学ぶフォーカス制御~
taked137
0
190
複雑なフォームに立ち向かう Next.js の技術選定
macchiitaka
2
240
はじめてのMaterial3 Expressive
ym223
2
900
為你自己學 Python - 冷知識篇
eddie
1
350
チームのテスト力を鍛える
goyoki
3
920
Swift Updates - Learn Languages 2025
koher
2
510
より安全で効率的な Go コードへ: Protocol Buffers Opaque API の導入
shwatanap
2
770
MCPでVibe Working。そして、結局はContext Eng(略)/ Working with Vibe on MCP And Context Eng
rkaga
5
2.3k
デザイナーが Androidエンジニアに 挑戦してみた
874wokiite
0
550
アセットのコンパイルについて
ojun9
0
130
機能追加とリーダー業務の類似性
rinchoku
2
1.3k
Oracle Database Technology Night 92 Database Connection control FAN-AC
oracle4engineer
PRO
1
470
Featured
See All Featured
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Producing Creativity
orderedlist
PRO
347
40k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
930
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
36
2.5k
Building Applications with DynamoDB
mza
96
6.6k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.6k
Unsuck your backbone
ammeep
671
58k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
KATA
mclloyd
32
14k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.5k
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