12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div class='kong'>
- <slot></slot>
- </div>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {
-
- };
- },
- props:{
- data:{
- type:Array,
- default:()=>[]
- }
- },
- computed: {},
- methods: {
- init(){
- },
- },
- created() {
-
- },
- mounted() {
-
- },
- beforeDestroy() {
- },
- }
- </script>
- <style lang="less" scoped>
- .kong{
- width: 100%;
- height: 100%;
- }
- </style>
|