Files
official_network/src/components/icontent.vue
2026-04-27 12:48:35 +08:00

20 lines
221 B
Vue

<template>
<div class="contentTableRight bread">
<slot ></slot>
</div>
</template>
<script>
export default {
name: 'icontent'
};
</script>
<style scoped>
.contentTableRight
{
display: table;
}
</style>