mirror of
https://github.com/imdap/ruoyi-plus-vben5.git
synced 2026-05-12 06:02:12 +08:00
* feat: page component * chore: basic page * chore: add demos * chore: add header-sticky support * chore: update web-ele * chore: rename slot name --------- Co-authored-by: Vben <ann.vben@gmail.com>
14 lines
220 B
Vue
14 lines
220 B
Vue
<script setup lang="ts">
|
|
defineOptions({
|
|
name: 'PageFooter',
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="bg-card align-center absolute bottom-0 left-0 right-0 flex px-6 py-4"
|
|
>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|