mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
31 lines
505 B
Vue
31 lines
505 B
Vue
<template>
|
|
<div>
|
|
<nuxt-link to="/map">
|
|
<base-button
|
|
class="map-button"
|
|
circle
|
|
ghost
|
|
v-tooltip="{
|
|
content: $t('map.button.tooltip'),
|
|
placement: 'bottom-start',
|
|
}"
|
|
>
|
|
<base-icon name="globe-detailed" size="large" />
|
|
</base-button>
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'MapButton',
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.map-button {
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
}
|
|
</style>
|