Welcome to mirror list, hosted at ThFree Co, Russian Federation.

trigger.vue « components « whats_new « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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>