Skip to content

Commit

Permalink
feat: add link on pages
Browse files Browse the repository at this point in the history
  • Loading branch information
lvjiaxuan committed May 30, 2023
1 parent 393c98b commit a22edc5
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
6 changes: 5 additions & 1 deletion playgrounds/vue2.7/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions playgrounds/vue2.7/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,18 @@ options.immediate.value = sessionStorage.getItem('immediate') === 'true'
<p text-center>
Vue version: {{ version }}
</p>
<p text-center>
<a
href="https://lvjiaxuan.github.io/vue-number-roll"
target="_blank"
rel="noopener noreferrer"
decoration-none
italic
>
vue3 version
</a>
</p>
</main>
</template>
Expand Down
12 changes: 12 additions & 0 deletions playgrounds/vue3/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,18 @@ options.immediate.value = sessionStorage.getItem('immediate') === 'true'
<p text-center>
Vue version: {{ version }}
</p>

<p text-center>
<a
href="https://lvjiaxuan.github.io/vue-number-roll/vue2"
target="_blank"
rel="noopener noreferrer"
decoration-none
italic
>
vue2 version
</a>
</p>
</main>
</template>

Expand Down

0 comments on commit a22edc5

Please sign in to comment.