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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Robert Schäfer
October 16, 2019
Programming
0
38
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
520
Systems Development and Frameworks - #0 Introduction
roschaefer
0
160
Free Beginners Open-Source Coding Workshop @Tuesday Co-Working
roschaefer
0
95
Find Contributors in Online Learner Communities
roschaefer
0
46
Story-Trolley: Ember meets the IoT
roschaefer
0
100
digital democracy in public broadcasting @34C3
roschaefer
0
56
democracy-app @34C3
roschaefer
0
110
Rundfunk MITBESTIMMEN @ Nerd Nite Berlin #17, 2017-06-13
roschaefer
0
65
Rundfunk MITBESTIMMEN @ Open-Tech-Summit
roschaefer
0
76
Other Decks in Programming
See All in Programming
Rethinking API Platform Filters
vinceamstoutz
0
980
メッセージングを利用して時間的結合を分離しよう #phperkaigi
kajitack
3
440
最初からAWS CDKで技術検証してもいいんじゃない?
akihisaikeda
4
170
CSC307 Lecture 15
javiergs
PRO
0
270
AI活用のコスパを最大化する方法
ochtum
0
340
RailsのValidatesをSwift Macrosで再現してみた
hokuron
0
140
Codex CLIのSubagentsによる並列API実装 / Parallel API Implementation with Codex CLI Subagents
takatty
2
590
「接続」—パフォーマンスチューニングの最後の一手 〜点と点を結ぶ、その一瞬のために〜
kentaroutakeda
4
2.1k
Understanding Apache Lucene - More than just full-text search
spinscale
0
140
PHP でエミュレータを自作して Ubuntu を動かそう
m3m0r7
PRO
2
150
PHPで TLSのプロトコルを実装してみる
higaki_program
0
510
Angular-Apps smarter machen mit Gen AI: Lokal und offlinefähig - Hands-on Workshop!
christianliebel
PRO
0
140
Featured
See All Featured
Design of three-dimensional binary manipulators for pick-and-place task avoiding obstacles (IECON2024)
konakalab
0
390
Site-Speed That Sticks
csswizardry
13
1.1k
How to Talk to Developers About Accessibility
jct
2
160
Accessibility Awareness
sabderemane
0
86
The Invisible Side of Design
smashingmag
302
51k
Why Our Code Smells
bkeepers
PRO
340
58k
Breaking role norms: Why Content Design is so much more than writing copy - Taylor Woolridge
uxyall
0
230
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.1k
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.4k
Typedesign – Prime Four
hannesfritz
42
3k
How to train your dragon (web standard)
notwaldorf
97
6.6k
Documentation Writing (for coders)
carmenintech
77
5.3k
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>
• • • • •
• • •