Files

15 lines
163 B
Vue
Raw Permalink Normal View History

2024-02-02 14:44:30 +08:00
<template>
<view class="jl-form">
<slot></slot>
</view>
</template>
<script>
export default {};
</script>
<style>
.jl-form {
display: block;
}
</style>