mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-15 09:44:16 +00:00
64 lines
1.3 KiB
Vue
64 lines
1.3 KiB
Vue
<!-- *************************************************************************
|
|
TEMPLATE
|
|
************************************************************************* -->
|
|
|
|
<template lang="pug">
|
|
div(
|
|
:data-balloon="'Share on ' + network"
|
|
class="c-base-share"
|
|
data-balloon-pos="up"
|
|
data-balloon-type="mini"
|
|
)
|
|
img(
|
|
@click="onClick"
|
|
:src="baseUrl + '/images/components/BaseShare/' + network.toLowerCase() + '.svg'"
|
|
class="c-base-share__image"
|
|
)
|
|
</template>
|
|
|
|
<!-- *************************************************************************
|
|
SCRIPT
|
|
************************************************************************* -->
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
network: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
// --> STATE <--
|
|
baseUrl: process.env.baseUrl
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
this.$emit("click", this.network);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<!-- *************************************************************************
|
|
STYLE
|
|
************************************************************************* -->
|
|
|
|
<style lang="scss">
|
|
$c: ".c-base-share";
|
|
|
|
#{$c} {
|
|
display: inline-block;
|
|
|
|
#{$c}__image {
|
|
width: 32px;
|
|
height: 32px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
</style>
|