Newer
Older
urbanLifeline_YanAn / src / components / RuoYi / Git / index.vue
@zhangqy zhangqy on 3 Oct 223 bytes first commit
<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>