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

field_view.vue « markdown « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84d40db07bbd2c237155d8e071c0248c1f5f6933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
import { renderGFM } from '~/behaviors/markdown/render_gfm';

export default {
  mounted() {
    renderGFM(this.$el);
  },
};
</script>

<template>
  <div><slot></slot></div>
</template>