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
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
RubyとGoでゼロから作る証券システム: 高信頼性が求められるシステムのコードの外側にある設計と運用のリアル
free_world21
0
230
New in Go 1.26 Implementing go fix in product development
sunecosuri
0
380
エンジニアの「手元の自動化」を加速するn8n 2026.02.27
symy2co
0
110
ご飯食べながらエージェントが開発できる。そう、Agentic Engineeringならね。
yokomachi
1
290
Unity6.3 AudioUpdate
cova8bitdots
0
110
Event Storming
hschwentner
3
1.3k
The Ralph Wiggum Loop: First Principles of Autonomous Development
sembayui
0
3.7k
SourceGeneratorのマーカー属性問題について
htkym
0
170
メタプログラミングで実現する「コードを仕様にする」仕組み/nikkei-tech-talk43
nikkei_engineer_recruiting
0
160
今更考える「単一責任原則」 / Thinking about the Single Responsibility Principle
tooppoo
3
1.6k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
300
TipKitTips
ktcryomm
0
160
Featured
See All Featured
Speed Design
sergeychernyshev
33
1.6k
The Anti-SEO Checklist Checklist. Pubcon Cyber Week
ryanjones
0
88
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
630
Jamie Indigo - Trashchat’s Guide to Black Boxes: Technical SEO Tactics for LLMs
techseoconnect
PRO
0
82
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
120
Documentation Writing (for coders)
carmenintech
77
5.3k
How to Talk to Developers About Accessibility
jct
2
150
The AI Search Optimization Roadmap by Aleyda Solis
aleyda
1
5.4k
Principles of Awesome APIs and How to Build Them.
keavy
128
17k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
10k
AI: The stuff that nobody shows you
jnunemaker
PRO
3
360
The SEO Collaboration Effect
kristinabergwall1
0
380
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>
• • • • •
• • •