Skip to content

Commit 9ed4e09

Browse files
Greggyyx990803
authored andcommitted
Added Gregg + Adam & Mixins free lesson link (#1981)
1 parent 7600664 commit 9ed4e09

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

src/v2/guide/mixins.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ order: 301
88

99
Mixins are a flexible way to distribute reusable functionalities for Vue components. A mixin object can contain any component options. When a component uses a mixin, all options in the mixin will be "mixed" into the component's own options.
1010

11+
<div class="vue-mastery"><a href="https://www.vuemastery.com/courses/next-level-vue/mixins" target="_blank" rel="noopener" title="Mixins Tutorial">Watch a video explanation on Vue Mastery</a></div>
12+
1113
Example:
1214

1315
``` js

src/v2/guide/team.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,6 +1159,40 @@ order: 803
11591159
'https://vuestorefront.io'
11601160
]
11611161
},
1162+
{
1163+
name: 'Gregg Pollack',
1164+
title: '',
1165+
city: 'Orlando, FL',
1166+
languages: ['en'],
1167+
github: 'gregg',
1168+
twitter: 'greggpollack',
1169+
work: {
1170+
role: 'Vue Instructor',
1171+
org: 'Vue Mastery',
1172+
orgUrl: 'https://www.vuemastery.com/'
1173+
},
1174+
links: [
1175+
'https://www.vuemastery.com',
1176+
'https://news.vuejs.org/'
1177+
]
1178+
},
1179+
{
1180+
name: 'Adam Jahr',
1181+
title: '',
1182+
city: 'Orlando, FL',
1183+
languages: ['en'],
1184+
github: 'atomjar',
1185+
twitter: 'adamjahr',
1186+
work: {
1187+
role: 'Vue Instructor',
1188+
org: 'Vue Mastery',
1189+
orgUrl: 'https://www.vuemastery.com/'
1190+
},
1191+
links: [
1192+
'https://www.vuemastery.com',
1193+
'https://news.vuejs.org/'
1194+
]
1195+
}
11621196
]
11631197

11641198
Vue.component('vuer-profile', {

0 commit comments

Comments
 (0)