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

form_footer_actions.vue « form « 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: 26c50345c19f0f2fb448af90a1d1de6baa278bf5 (plain)
1
2
3
4
5
6
7
8
<!-- eslint-disable-next-line vue/no-deprecated-functional-template -->
<template functional>
  <footer class="form-actions d-flex justify-content-between">
    <div><slot name="prepend"></slot></div>
    <div><slot></slot></div>
    <div><slot name="append"></slot></div>
  </footer>
</template>