Skip to content

Commit

Permalink
feat: add link for Nuxt and Vue on overview tab
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Oct 17, 2023
1 parent bb4baf5 commit 5314fff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/devtools/client/pages/modules/overview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ function authorize() {
</div>
<!-- Main Grid -->
<div flex="~ gap2 wrap">
<div p4 theme-card-green flex="~ col auto">
<NuxtLink to="https://nuxt.com" target="_blank" p4 theme-card-green flex="~ col auto">
<div logos-nuxt-icon text-3xl />
<NpmVersionCheck package-name="nuxt" :options="{ dev: true }" />
</div>
<div v-if="vueVersion" p4 theme-card-green flex="~ col auto">
</NuxtLink>
<NuxtLink v-if="vueVersion" to="https://vuejs.org" target="_blank" p4 theme-card-green flex="~ col auto">
<div logos-vue text-3xl />
<code>v{{ vueVersion }}</code>
</div>
</NuxtLink>
<template v-if="config">
<NuxtLink
v-if="config && config.pages && client" min-w-40 p4 theme-card-lime flex="~ col auto"
Expand Down

0 comments on commit 5314fff

Please sign in to comment.