Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
parinya-ao committed Nov 18, 2024
1 parent f99917a commit 4d12318
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/resumeComponents/Profile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<div class="righ">
<!-- github and linkedin zone -->
<!-- linkedin link -->
<a :href="LinkinLink" class="social-link">Linkedin</a>
<a :href="LinkinLink" target="_blank" class="social-link">Linkedin</a>
<!-- gtihub link -->
<a :href="GithubLink" class="social-link">Github</a>
<a :href="GithubLink" target="_blank" class="social-link">Github</a>
</div>
</div>
</template>
Expand Down
4 changes: 2 additions & 2 deletions src/components/resumeComponents/Profile.vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ function __VLS_template() {
__VLS_elementAsFunction(__VLS_intrinsicElements.p, __VLS_intrinsicElements.p)({ ...{ style: ({}) }, });
(__VLS_ctx.NickName);
__VLS_elementAsFunction(__VLS_intrinsicElements.div, __VLS_intrinsicElements.div)({ ...{ class: ("righ") }, });
__VLS_elementAsFunction(__VLS_intrinsicElements.a, __VLS_intrinsicElements.a)({ href: ((__VLS_ctx.LinkinLink)), ...{ class: ("social-link") }, });
__VLS_elementAsFunction(__VLS_intrinsicElements.a, __VLS_intrinsicElements.a)({ href: ((__VLS_ctx.GithubLink)), ...{ class: ("social-link") }, });
__VLS_elementAsFunction(__VLS_intrinsicElements.a, __VLS_intrinsicElements.a)({ href: ((__VLS_ctx.LinkinLink)), target: ("_blank"), ...{ class: ("social-link") }, });
__VLS_elementAsFunction(__VLS_intrinsicElements.a, __VLS_intrinsicElements.a)({ href: ((__VLS_ctx.GithubLink)), target: ("_blank"), ...{ class: ("social-link") }, });
__VLS_styleScopedClasses['container'];
__VLS_styleScopedClasses['left'];
__VLS_styleScopedClasses['center'];
Expand Down
2 changes: 1 addition & 1 deletion src/components/resumeComponents/Skill.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default {
return {
ProgramingLangauge: ['Python', 'C', 'C++', 'Javascript', 'Typescript'],
FramworksList: ['Vuejs', 'React Native'],
ToolList: ['git', 'vim'],
ToolList: ['git', 'vim', 'figma'],
}
},
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/resumeComponents/Skill.vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export default (await import('vue')).defineComponent({
return {
ProgramingLangauge: ['Python', 'C', 'C++', 'Javascript', 'Typescript'],
FramworksList: ['Vuejs', 'React Native'],
ToolList: ['git', 'vim'],
ToolList: ['git', 'vim', 'figma'],
};
},
}); /* PartiallyEnd: #3632/script.vue */
Expand Down

0 comments on commit 4d12318

Please sign in to comment.