chore: add circle

This commit is contained in:
Henrique Dias
2018-02-01 14:43:54 +00:00
committed by GitHub
parent 1f4d0cc3cd
commit 0595638228
126 changed files with 293 additions and 354 deletions

View File

@@ -0,0 +1,17 @@
<template>
<button @click="show" :aria-label="$t('buttons.copy')" :title="$t('buttons.copy')" class="action" id="copy-button">
<i class="material-icons">content_copy</i>
<span>{{ $t('buttons.copyFile') }}</span>
</button>
</template>
<script>
export default {
name: 'copy-button',
methods: {
show: function (event) {
this.$store.commit('showHover', 'copy')
}
}
}
</script>