this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update welcome page

+16 -10
+4 -8
components.d.ts
··· 1 1 // generated by unplugin-vue-components 2 2 // We suggest you to commit this file into source control 3 - // Read more: https://github.com/vuejs/core/pull/3399 4 - import '@vue/runtime-core' 5 - 6 - export {} 3 + // Read more: https://github.com/vuejs/vue-next/pull/3399 7 4 8 - declare module '@vue/runtime-core' { 5 + declare module 'vue' { 9 6 export interface GlobalComponents { 10 7 AboutMe: typeof import('./src/components/presentation/about-me.vue')['default'] 11 8 AppHeader: typeof import('./src/components/app-header.vue')['default'] ··· 13 10 CrcCard: typeof import('./src/components/architecture/crc-card.vue')['default'] 14 11 ForgettingCurve: typeof import('./src/components/smart-notes/forgetting-curve.vue')['default'] 15 12 JulienCalixte: typeof import('./src/components/core/julien-calixte.vue')['default'] 16 - MyBooks: typeof import('./src/components/presentation/my-books.vue')['default'] 17 13 MyProjects: typeof import('./src/components/presentation/my-projects.vue')['default'] 18 14 ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default'] 19 - RouterLink: typeof import('vue-router')['RouterLink'] 20 - RouterView: typeof import('vue-router')['RouterView'] 21 15 ToucanIcon: typeof import('./src/components/core/toucan-icon.vue')['default'] 22 16 Welcome: typeof import('./src/components/Welcome.vue')['default'] 23 17 } 24 18 } 19 + 20 + export { }
+6 -1
src/components/Welcome.vue
··· 8 8 9 9 <my-projects /> 10 10 11 - <my-books /> 11 + <h3>My books</h3> 12 + 13 + <p> 14 + I'm glad to share you <a href="/my-books">the books</a> I'm currently reading. 15 + </p> 16 + 12 17 </section> 13 18 </template> 14 19
+6 -1
src/components/presentation/my-books.vue src/pages/my-books.vue
··· 1 + <page> 2 + title: My books 3 + </page> 4 + 1 5 <template> 2 6 <section> 3 7 <h2>My books</h2> 4 8 5 - <p>I used to read so little, but in 2021, I decided to take example of CGP Grey and add as one of my theme to read 9 + <p> 10 + I used to read so little, but in 2021, I decided to take example of CGP Grey and add as one of my theme to read 6 11 more and write more. 7 12 </p> 8 13