summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/whats_new/components/trigger.vue
blob: e6c48e928889d0cdeac7a40e1702ad5a44b2ce7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
import { mapActions } from 'vuex';
import { GlButton } from '@gitlab/ui';

export default {
  components: {
    GlButton,
  },
  methods: {
    ...mapActions(['openDrawer']),
  },
};
</script>

<template>
  <li>
    <gl-button variant="link" @click="openDrawer">{{ __("See what's new at GitLab") }}</gl-button>
  </li>
</template>