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
Systems Development and Frameworks - #2 VueJS
Search
Robert Schäfer
October 16, 2019
Programming
0
32
Systems Development and Frameworks - #2 VueJS
Robert Schäfer
October 16, 2019
Tweet
Share
More Decks by Robert Schäfer
See All by Robert Schäfer
Quelloffene, gemeinwohlorientierte und dezentrale Soziale Medien
roschaefer
0
470
Systems Development and Frameworks - #0 Introduction
roschaefer
0
150
Free Beginners Open-Source Coding Workshop @Tuesday Co-Working
roschaefer
0
91
Find Contributors in Online Learner Communities
roschaefer
0
43
Story-Trolley: Ember meets the IoT
roschaefer
0
94
digital democracy in public broadcasting @34C3
roschaefer
0
46
democracy-app @34C3
roschaefer
0
99
Rundfunk MITBESTIMMEN @ Nerd Nite Berlin #17, 2017-06-13
roschaefer
0
59
Rundfunk MITBESTIMMEN @ Open-Tech-Summit
roschaefer
0
69
Other Decks in Programming
See All in Programming
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
230
Julia という言語について (FP in Julia « SIDE: F ») for 関数型まつり2025
antimon2
3
980
20250628_非エンジニアがバイブコーディングしてみた
ponponmikankan
0
400
童醫院敏捷轉型的實踐經驗
cclai999
0
190
XSLTで作るBrainfuck処理系
makki_d
0
210
Team operations that are not burdened by SRE
kazatohiei
1
210
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
240
GraphRAGの仕組みまるわかり
tosuri13
7
480
地方に住むエンジニアの残酷な現実とキャリア論
ichimichi
5
1.3k
なぜ「共通化」を考え、失敗を繰り返すのか
rinchoku
1
510
Bytecode Manipulation 으로 생산성 높이기
bigstark
2
380
関数型まつり2025登壇資料「関数プログラミングと再帰」
taisontsukada
2
850
Featured
See All Featured
Building an army of robots
kneath
306
45k
Building Applications with DynamoDB
mza
95
6.5k
Building a Modern Day E-commerce SEO Strategy
aleyda
42
7.3k
We Have a Design System, Now What?
morganepeng
53
7.7k
Side Projects
sachag
455
42k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
53
2.8k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
The World Runs on Bad Software
bkeepers
PRO
69
11k
Art, The Web, and Tiny UX
lynnandtonic
299
21k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
A designer walks into a library…
pauljervisheath
207
24k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Transcript
None
None
None
None
None
None
None
None
None
• • /VueJS README.md • • • @roschaefer • •
https://vuejs.org/
: colon @ at {{ }} curly braces v-if v-for
<template></template>
:post :post :comment :user=”author” :resource=”comment”
@createComment @deleteComment="updateCommentList" @updateComment="updateCommentList" @showEditCommentMenu
None
computed: { commentCount() { return this.comments.length }, }
const comment = await ... this.$emit(updateComment,comment)
<div class="container"> <header> <slot name="header"></slot> </header> <main> <slot></slot> </main> <footer>
<slot name="footer"></slot> </footer> </div>
• • • • •
• • •