mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-25 23:03:47 +01:00
17 lines
292 B
Vue
17 lines
292 B
Vue
<template>
|
|
<div class="columns is-marginless has-text-weight-bold is-family-monospace">
|
|
<span class="column">{{ value }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: String,
|
|
},
|
|
name: "ContainerTitle",
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|