Newer
Older
Nanping_sponge_SJJC / src / components / RuoYi / Git / index.vue
@liyingjing liyingjing on 25 Oct 223 bytes 数据检测
<template>
  <div>
    <svg-icon icon-class="github" @click="goto" />
  </div>
</template>

<script setup>
const url = ref('https://gitee.com/y_project/RuoYi-Cloud');

function goto() {
  window.open(url.value)
}
</script>