Skip to content

Commit

Permalink
website: fix repo url error.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Oct 20, 2023
1 parent ee5341e commit e5857da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions website/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import mdStr from '../../README.md';
export default defineComponent({
data() {
return {
repopage: 'https://github.com/tsbbjs/vue-monorepo-template',
markdown: mdStr,
description: pkg.description,
};
Expand All @@ -23,12 +24,12 @@ export default defineComponent({

<template>
<div>
<github-corners fixed target="__blank" href="https://github.com/tsbbjs/vue-monorepo-template" />
<github-corners fixed target="__blank" :href="repopage" />
<header>
<div>
<img src="./assets/vue.svg" alt="Vue Monorepo Template" />
</div>
<a href="https://github.com/uivjs/vue-markdown-preview" target="__blank">Vue Monorepo Template</a>
<a :href="repopage" target="__blank">Vue Monorepo Template</a>
<p>Simple Vue 3 package development project example template.</p>
</header>
<example-base></example-base>
Expand Down

0 comments on commit e5857da

Please # to comment.