mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-03-17 11:13:43 +00:00
23 lines
400 B
Vue
23 lines
400 B
Vue
<template>
|
|
<!-- 属性内容 -->
|
|
<div class="content-wrap">
|
|
|
|
<!-- 组件公共属性 -->
|
|
<slot name="common"></slot>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import { t } from '@/lang'
|
|
import usePosterStore from '@/stores/modules/poster'
|
|
|
|
const posterStore = usePosterStore()
|
|
|
|
defineExpose({})
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|