This commit is contained in:
2025-06-14 18:03:55 +08:00
commit 1ef24fb6cb
293 changed files with 26070 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<template>
<div>
<svg-icon icon-class="question" @click="goto" />
</div>
</template>
<script>
export default {
name: '',
data() {
return {
url: ''
}
},
methods: {
goto() {
window.open(this.url)
}
}
}
</script>