12 lines
250 B
Vue
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>
|