| | |
| | | <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)
|
| | | }
|
| | | }
|
| | | }
|
| | | <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> |