2024-09-27 11:14:22 +08:00

25 lines
289 B
Vue

<template>
<div></div>
</template>
<script>
export default {
name: "Index",
data() {
return {
// 版本号
version: "3.8.5"
};
},
methods: {
goTarget(href) {
window.open(href, "_blank");
}
}
};
</script>
<style scoped lang="scss">
</style>