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
440
Systems Development and Frameworks - #0 Introduction
roschaefer
0
150
Free Beginners Open-Source Coding Workshop @Tuesday Co-Working
roschaefer
0
90
Find Contributors in Online Learner Communities
roschaefer
0
41
Story-Trolley: Ember meets the IoT
roschaefer
0
93
digital democracy in public broadcasting @34C3
roschaefer
0
45
democracy-app @34C3
roschaefer
0
83
Rundfunk MITBESTIMMEN @ Nerd Nite Berlin #17, 2017-06-13
roschaefer
0
58
Rundfunk MITBESTIMMEN @ Open-Tech-Summit
roschaefer
0
66
Other Decks in Programming
See All in Programming
歴史と現在から考えるスケーラブルなソフトウェア開発のプラクティス
i10416
0
290
htmxって知っていますか?次世代のHTML
hiro_ghap1
0
410
Оптимизируем производительность блока Казначейство
lamodatech
0
920
rails newと同時に型を書く
aki19035vc
5
690
LLM Supervised Fine-tuningの理論と実践
datanalyticslabo
8
1.8k
コンテナをたくさん詰め込んだシステムとランタイムの変化
makihiro
1
190
Jaspr Dart Web Framework 박제창 @Devfest 2024
itsmedreamwalker
0
140
KubeCon NA 2024の全DB関連セッションを紹介
nnaka2992
0
110
ある日突然あなたが管理しているサーバーにDDoSが来たらどうなるでしょう?知ってるようで何も知らなかったDDoS攻撃と対策 #phpcon.2024
akase244
2
7.7k
どうして手を動かすよりもチーム内のコードレビューを優先するべきなのか
okashoi
3
840
Amazon Nova Reelの可能性
hideg
0
140
React 19でお手軽にCSS-in-JSを自作する
yukukotani
5
550
Featured
See All Featured
Statistics for Hackers
jakevdp
797
220k
YesSQL, Process and Tooling at Scale
rocio
170
14k
Building Flexible Design Systems
yeseniaperezcruz
328
38k
Done Done
chrislema
182
16k
Reflections from 52 weeks, 52 projects
jeffersonlam
348
20k
Intergalactic Javascript Robots from Outer Space
tanoku
270
27k
Build The Right Thing And Hit Your Dates
maggiecrowley
33
2.5k
How GitHub (no longer) Works
holman
312
140k
How to Think Like a Performance Engineer
csswizardry
22
1.3k
4 Signs Your Business is Dying
shpigford
182
21k
GraphQLとの向き合い方2022年版
quramy
44
13k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
226
22k
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>
• • • • •
• • •