Files
mixtape/zero.Backoffice.UI/old_app/components/modules/predefined/module-preview-button.vue
T

17 lines
275 B
Vue
Raw Normal View History

2021-01-29 13:07:04 +01:00
<template>
<div class="ui-module-preview-button">
<div class="ui-button type-light" v-text="text"></div>
</div>
</template>
<script>
export default {
name: 'uiModulePreviewButton',
props: {
text: {
type: String
}
}
}
</script>