CMVR-IOT-UI/src/components/RuoYi/Git/index.vue

14 lines
228 B
Vue

<template>
<div>
<svg-icon icon-class="github" @click="goto" />
</div>
</template>
<script setup>
const url = ref(import.meta.env.VITE_APP_BASE_API + '/doc.html')
function goto() {
window.open(url.value)
}
</script>