Skip to content

Commit 16644b1

Browse files
authored
Merge pull request #3 from vuejs-kr/master
코드를 최신상태로 업데이트합니다.
2 parents 456d973 + 54403d7 commit 16644b1

5 files changed

+380
-2
lines changed

_config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ facebook_appid:
4242
facebook_comments_number: 10
4343

4444
# Social icons
45+
slack_url: https://vuejs-korea.signup.team/
46+
facebook_url: https://www.facebook.com/groups/1152461054807344/
4547
github_username: vuejs-kr
4648
bitbucket_username:
4749
stackoverflow_id:

_includes/social_links.html

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<div class="social-icons">
22
<div class="social-icons-right">
3+
{% if site.slack_url %}
4+
<a class="fa fa-slack" href="{{ site.slack_url }}"></a>
5+
{% endif %}
6+
{% if site.facebook_url %}
7+
<a class="fa fa-facebook" href="{{ site.facebook_url }}"></a>
8+
{% endif %}
39
{% if site.github_username %}
410
<a class="fa fa-github" href="https://github.com/{{ site.github_username }}"></a>
511
{% endif %}

_posts/2016-12-26-jsfiddle-default-counter.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ const counterApp = new Vue({
3535
el: '#counter-app',
3636
data: function () {
3737
return {
38-
counter: 0
38+
count: 0
3939
}
4040
}
4141
})
4242
```
4343

4444
counterApp 은 Vue 인스턴스 입니다. `counter-app` ID를 가지는 div에 마운트됩니다. counterApp이 가지는 데이터 객체는 `counter` 입니다.
45-
`counter` 객체는 `#counter-app` 안에서 Handlebars로 출력할 수 있습니다.
45+
`count` 객체는 `#counter-app` 안에서 Handlebars로 출력할 수 있습니다.
4646

4747

4848
### 2. 증가/감소 메소드 추가

0 commit comments

Comments
 (0)