- 重命名文件: ruoyi.js common.js, ruoyi.scss common.scss - 重命名组件: RuoYi/ Common/ - 创建新类: XinliConfig.java (替代RuoYiConfig.java) - 更新所有导入语句和引用 (50+ 处) - 更新配置前缀: ruoyi xinli - 更新Swagger文档标题和描述 - 更新许可证版权信息 - 移除所有RuoYi文档链接和示例代码
22 lines
297 B
Vue
22 lines
297 B
Vue
<template>
|
|
<div>
|
|
<svg-icon icon-class="github" @click="goto" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'CommonGit',
|
|
data() {
|
|
return {
|
|
url: 'https://github.com/ddnai/ry-xinli'
|
|
}
|
|
},
|
|
methods: {
|
|
goto() {
|
|
window.open(this.url)
|
|
}
|
|
}
|
|
}
|
|
</script>
|