mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
19 lines
276 B
Vue
19 lines
276 B
Vue
<script>
|
|
import { COMMENT_FORM } from '../i18n';
|
|
|
|
export default {
|
|
i18n: COMMENT_FORM.attachmentMsg,
|
|
data() {
|
|
return {
|
|
message: this.$options.i18n,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="issuable-note-warning">
|
|
{{ message }}
|
|
</div>
|
|
</template>
|