Bug 33066: Introduce a KohaTable Vue component
[koha.git] / koha-tmpl / intranet-tmpl / prog / js / vue / components / ButtonSubmit.vue
1 <template>
2     <input type="submit" variant="primary" :value="text" />
3 </template>
4
5 <script>
6 export default {
7     name: "ButtonSubmit",
8     props: {
9         text: {
10             type: String,
11             default: __("Submit"),
12             required: false,
13         },
14     },
15 }
16 </script>