Newer
Older
Nanping_sponge_JXKH / src / components / RuoYi / Doc / index.vue
@liyingjing liyingjing on 25 Oct 217 bytes 海绵绩效考个
<template>
  <div>
    <svg-icon icon-class="question" @click="goto" />
  </div>
</template>

<script setup>
const url = ref('http://doc.ruoyi.vip/ruoyi-cloud');

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