Files
jobslink-user-clent/components/jl-form/main.vue

15 lines
163 B
Vue
Raw 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>