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
480
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
100
Rundfunk MITBESTIMMEN @ Nerd Nite Berlin #17, 2017-06-13
roschaefer
0
59
Rundfunk MITBESTIMMEN @ Open-Tech-Summit
roschaefer
0
70
Other Decks in Programming
See All in Programming
テスト駆動Kaggle
isax1015
1
860
AI Ramen Fight
yusukebe
0
100
Model Pollution
hschwentner
1
160
20250708_JAWS_opscdk
takuyay0ne
2
140
Python型ヒント完全ガイド 初心者でも分かる、現代的で実践的な使い方
mickey_kubo
1
250
“いい感じ“な定量評価を求めて - Four Keysとアウトカムの間の探求 -
nealle
2
12k
フロントエンドのパフォーマンスチューニング
koukimiura
6
2.2k
Streamlitで実現できるようになったこと、実現してくれたこと
ayumu_yamaguchi
2
210
Yes, You Can Work on Rails & any other Gem
kaspth
0
110
20250704_教育事業におけるアジャイルなデータ基盤構築
hanon52_
5
1.2k
React は次の10年を生き残れるか:3つのトレンドから考える
oukayuka
39
14k
Android 16KBページサイズ対応をはじめからていねいに
mine2424
0
620
Featured
See All Featured
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
50
5.5k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.7k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
840
Faster Mobile Websites
deanohume
308
31k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
130
19k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Building Adaptive Systems
keathley
43
2.7k
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>
• • • • •
• • •