21 lines
357 B
Vue
21 lines
357 B
Vue
<template>
|
|
<v-card
|
|
:style="{
|
|
'text-align': 'center',
|
|
padding: '5px',
|
|
'margin-top': '10px',
|
|
'white-space': 'nowrap',
|
|
'overflow': 'hidden',
|
|
}"
|
|
>
|
|
<slot />
|
|
</v-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Vue, Component } from 'vue-property-decorator';
|
|
|
|
@Component
|
|
export default class extends Vue {}
|
|
</script>
|