Files
WAI_Project_VUE/src/plugins/github/components/code.vue
2025-11-27 17:36:44 +08:00

12 lines
250 B
Vue

<!-- <template>
<div class="cl-comm__icon" @click="toCode">
<cl-svg name="github" />
</div>
</template> -->
<script setup lang="ts">
function toCode() {
window.open('https://github.com/cool-team-official/cool-admin-vue', '_blank');
}
</script>