RuoYi-Vue 1.0

This commit is contained in:
RuoYi
2019-10-08 09:14:38 +08:00
parent 5bc7455464
commit 46444bd0fe
400 changed files with 32457 additions and 84 deletions

View File

@ -0,0 +1,21 @@
<template>
<div>
<svg-icon icon-class="download" @click="handleDownload"/>
</div>
</template>
<script>
export default {
name: 'RuoYi',
data() {
return {
url: 'https://gitee.com/y_project/RuoYi-Vue'
}
},
methods: {
handleDownload() {
window.open(this.url)
}
}
}
</script>