16 lines
224 B
Vue
16 lines
224 B
Vue
<template>
|
|
<div class="layui-side-scroll">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: "LayScroll"
|
|
}
|
|
</script>
|
|
|
|
<script setup lang="ts">
|
|
import { defineProps } from "vue";
|
|
</script>
|