Skip to content

Commit 274bbb1

Browse files
author
Sangeeth Sudheer
authored
meetup30: finalize event items (#99)
1 parent 29695f8 commit 274bbb1

File tree

3 files changed

+51
-10
lines changed

3 files changed

+51
-10
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<template>
2+
<section class="discussion">
3+
<h3 class="title">{{ title }}</h3>
4+
<div v-if="description" v-html="description"></div>
5+
</section>
6+
</template>
7+
8+
<script>
9+
export default {
10+
props: [
11+
"title",
12+
"speaker",
13+
"speakers",
14+
"description",
15+
"deck",
16+
"issue",
17+
"source",
18+
],
19+
filters: {
20+
filename(value) {
21+
return value.split("/").pop();
22+
},
23+
},
24+
computed: {
25+
allSpeakers() {
26+
return this.speakers ? this.speakers : [this.speaker];
27+
},
28+
},
29+
};
30+
</script>
31+
32+
<style scoped>
33+
.discussion {
34+
position: relative;
35+
}
36+
</style>
37+

.vuepress/config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ module.exports = {
1111
['link', {
1212
rel: 'apple-touch-icon',
1313
sizes: '180x180',
14-
href: '/assets/favicons/apple-touch-icon.png'
14+
href: '/favicons/apple-touch-icon.png'
1515
}],
1616
['link', {
1717
rel: 'icon',
1818
type: 'image/png',
1919
sizes: '32x32',
20-
href: '/assets/favicons/favicon-32x32.png'
20+
href: '/favicons/favicon-32x32.png'
2121
}],
2222
['link', {
2323
rel: 'icon',
2424
type: 'image/png',
2525
sizes: '16x16',
26-
href: '/assets/favicons/favicon-16x16.png'
26+
href: '/favicons/favicon-16x16.png'
2727
}],
2828
['link', {
2929
rel: 'shortcut icon',
30-
href: '/assets/favicons/favicon.ico'
30+
href: '/favicons/favicon.ico'
3131
}],
3232
['meta', {
3333
name: 'theme-color',

30/README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,18 @@ description: |
66
<p>📝 Schedule:</p>
77
<p>2:30 - 2:45 PM: Intro</p>
88
<p>2:45 - 3:30 PM: Talk #1: Vue Component Systems, Best Practices by Shivam Mishra</p>
9-
<p>3:30 - 4:15 PM: Talk #2: TBA</p>
10-
<p>4:15 - 5:00 PM: Talk #3: TBA</p>
9+
<p>3:30 - 4:15 PM: Talk #2: Vite.js —Lightning-fast Dev Workflows by Sangeeth Sudheer</p>
10+
<p>4:15 - 4:30 PM: Discussion on Tailwind/Vue 3/Vite and more!</p>
1111
<p>PS. All times are in IST (+5:30 GMT)</p>
1212
meetup: 276348184
1313
date: 2021-03-27T14:30Z
14-
time: 2:30 PM - 5:00 PM
14+
time: 2:30 PM - 4:30 PM
1515
venue:
1616
name: Online
1717
photos:
1818
- https://secure.meetupstatic.com/photos/event/b/5/c/highres_495182908.jpeg
19+
- https://secure.meetupstatic.com/photos/event/a/5/9/3/highres_495342387.jpeg
20+
- https://secure.meetupstatic.com/photos/event/a/5/9/4/highres_495342388.jpeg
1921
agenda:
2022
- title: "Vue Component Systems, Best Practices"
2123
type: talk
@@ -31,10 +33,12 @@ agenda:
3133
This talk assumes some knowledge of Vue in the past, won't be very hands-on, but ideas will be illustrated through code examples. Will use Vue 3 as the base for examples since all major projects will soon move to Vue 3
3234
speaker: Shivam Mishra <@scmmishra>
3335
bio: "Shivam practices front end engineering at DeepSource, focusing on Vue, Nuxt, TypeScript with a hint of GraphQL. At DeepSource, he's helping build the component system to be used in the next generation of their product. He's been building free software for over 3 years now, with a strong focus on front end. He's also the maintainer of a popular charting library Frappe Charts which he works on during his free time."
34-
- title: "TBA"
35-
type: talk
36-
- title: "TBA"
36+
- title: "Vite.js —Lightning-fast Dev Workflows by Sangeeth Sudheer"
3737
type: talk
38+
speaker: Sangeeth Sudheer <@sangeeth96>
39+
bio: "Sangeeth is one of the trio that currently helps organize VueBLR. He's also a front-end engineer at Flock, where he gets to geek out MAX on web tech, work on all the cool frameworks and build tools. He is a huge fan of Microsoft (yes, that's a thing), enjoys watching anime, listening to soundtrack and loves to play video games during his spare time. He's a geek in general and loves to geek out when given the chance."
40+
- title: "Discussion on Tailwind/Vue 3/Vite and more!"
41+
type: discussion
3842
organizers:
3943
- Vue Bangalore <@vueblr>
4044
---

0 commit comments

Comments
 (0)