Files
mixtape/zero.Backoffice.UI/old_app/components/modules/predefined/module-preview-button.vue
T
2021-12-07 01:11:18 +01:00

17 lines
275 B
Vue

<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>