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

sidebar_portal_target.vue « components « super_sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1154a4357e00949de9c7ccbc248263346e53930f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
import { SIDEBAR_PORTAL_ID, portalState } from '../constants';

export default {
  mounted() {
    portalState.ready = true;
  },
  beforeDestroy() {
    portalState.ready = false;
  },
  mountId: SIDEBAR_PORTAL_ID,
};
</script>

<template>
  <div v-once :id="$options.mountId"></div>
</template>