1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 12:01:57 +08:00
Yamel Senih f45a57178a
Feature/#doc add documentation (#798)
* Add support to x vversion from npm

* Add support to x vversion from npm

* Add support to x vversion from npm

* Add documentation for current repository
2021-04-29 12:23:48 -04:00

21 lines
412 B
Vue

<template>
<a
href="https://coding.net/?utm_source=panjiachen"
target="_blank"
@click="clickCoding('readme')"
style="display: block;"
>
<img src="https://adempiere-vue.gitee.io/gitee-cdn//72dd4d11-8958-4690-8adb-cfdd3a3a30cc.png">
</a>
</template>
<script>
export default {
methods: {
clickCoding(tag) {
ga('send', 'click', 'e.coding', 'Action', tag)
}
}
}
</script>