2022年5月29日从svn移到git

This commit is contained in:
daihh
2022-05-29 18:56:34 +08:00
commit b050613020
488 changed files with 68444 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<template>
<div class="page-remark" :class="{'hidden':hidden,'fixed':fixed}" >
<slot />
</div>
</template>
<script>
export default {
name: 'Remark',
props: {
fixed: {
type: Boolean,
default: true
},
hidden: {
type: Boolean,
default: true
}
}
}
</script>
<style scoped>
.page-remark {
margin-top: 50px;
background: #fff;
padding: 15px;
color:#aa0000;
border: 2px dotted #ffaa00;
}
.page-remark.hidden {
display: none;
}
.page-remark.fixed {
position: fixed;
width: 950px;
bottom: 0px;
}
</style>