mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
509 B
25 lines
509 B
<template> |
|
<div> |
|
<v-btn |
|
v-if="_isUIAllowed('add-user')" |
|
v-t="['c:view:share']" |
|
outlined |
|
class="nc-btn-share-view caption px-2 nc-remove-border font-weight-medium" |
|
small |
|
text |
|
@click="$emit('share')" |
|
> |
|
<v-icon size="13" class="mr-1" color="#777"> mdi-open-in-new </v-icon> |
|
<!-- Share View --> |
|
{{ $t('activity.shareView') }} |
|
</v-btn> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
name: 'ShareViewMenu', |
|
}; |
|
</script> |
|
|
|
<style scoped />
|
|
|