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

rich_viewer.vue « blob_viewers « 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: b3a1df8f30327db237ab7dfc16a8cb7679adf855 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
import ViewerMixin from './mixins';

export default {
  mixins: [ViewerMixin],
};
</script>
<template>
  <div v-html="content"></div>
</template>