-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathspeakers-2018.ts
More file actions
59 lines (58 loc) · 1.64 KB
/
Copy pathspeakers-2018.ts
File metadata and controls
59 lines (58 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import type { SpeakerInfo } from "../../types";
export const speakers2018: SpeakerInfo[] = [
{
name: ["Evan You"],
title: "Vue 3.0 Updates",
url: "https://vuefes.jp/2018/speakers/yyx990803/",
},
{
name: ["Sarah Drasner"],
title: "Next-level Vue Animations",
url: "https://vuefes.jp/2018/speakers/sdras/",
},
{
name: ["Takanori Oki"],
title: "Vue.js と Web Components のこれから",
url: "https://vuefes.jp/2018/speakers/takanorip/",
},
{
name: ["Katashin"],
title: "Vue Designer: デザインと実装の統合",
url: "https://vuefes.jp/2018/speakers/ktsn/",
},
{
name: ["Edd Yerburgh"],
title: "Unit testing a Vuex store",
url: "https://vuefes.jp/2018/speakers/eddyerburgh/",
},
{
name: ["菅原 孝則"],
title: "Atomic Design のデザインと実装の狭間",
url: "https://vuefes.jp/2018/speakers/ts020/",
},
{
name: ["Sébastien Chopin"],
title: "Nuxt.js 2.0",
url: "https://vuefes.jp/2018/speakers/Atinux/",
},
{
name: ["Rahul Kadyan"],
title: "A deep dive in SFC compilation",
url: "https://vuefes.jp/2018/speakers/znck/",
},
{
name: ["福井 烈"],
title: "note のフロントエンドを Nuxt.js で再構築した話",
url: "https://vuefes.jp/2018/speakers/fukuiretu/",
},
{
name: ["Guillaume Chau"],
title: "Vue CLI 3 and its Graphical User Interface",
url: "https://vuefes.jp/2018/speakers/Akryum/",
},
{
name: ["土屋 和良"],
title: "1年間単体テストを書き続けた現場から送る Vue Component のテスト",
url: "https://vuefes.jp/2018/speakers/tsuchikazu/",
},
];