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

text_editor.vue « components « pipeline_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22f2a32c9ac03df7f0c92866565a9a6396b73fc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script>
import EditorLite from '~/vue_shared/components/editor_lite.vue';

export default {
  components: {
    EditorLite,
  },
};
</script>
<template>
  <div class="gl-border-solid gl-border-gray-100 gl-border-1">
    <editor-lite file-name="*.yml" v-bind="$attrs" v-on="$listeners" />
  </div>
</template>