摘要:
$top: -15px; $left: 50%; &:after { position: absolute; top: $top; left: $left; content: ' '; z-index: 1; border: 8px solid transparent; border-bottom: 阅读全文
摘要:
display: grid; grid-template-columns: repeat(auto-fill, 100px); justify-content: space-between; gap: 10px; 阅读全文
摘要:
position: fixed; bottom: 10rpx; width: 80%; left: 50%; transform: translate(-50%, -50%); left:0; right:0; 阅读全文
摘要:
table { width: 50vw; margin: 50px; //border border-top: 1px solid gray; border-left: 1px solid gray; border-collapse: collapse; th, td { text-align: c 阅读全文
摘要:
<template> <div class="hello"> <h1>{{ msg }}</h1> </div> </template> <script> export default { name: 'HelloWorld', data() { return { msg: '' } }, moun 阅读全文
摘要:
.imgList { display: grid; justify-content: space-between; grid-template-columns: repeat(auto-fill, 100rpx); grid-gap: 10px; .item { width: 100rpx; hei 阅读全文
摘要:
::v-deep .el-table__fixed-right { height: 100% !important; //设置高优先,以覆盖内联样式 } ::v-deep .el-table__fixed { height: 100% !important; //设置高优先,以覆盖内联样式 } 阅读全文
摘要:
async countPptxSlides(file) { const zip = new JSZip() const zipFile = await zip.loadAsync(file) const presentationEntry = Object.values(zipFile.files) 阅读全文
摘要:
location /api/ { #这里填的是你自己的域名,即把以/api的请求转发到下面你配置的ip或者域名上面 #这里的端口号是你后端监听的端口号, #用这个栗子const res = await axios.post("http://sczh.xyz/api/article/comment", 阅读全文
摘要:
<template> <div id="app"> <router-view /> </div> </template> <script> export default { name: 'App', data() { return { previousTimeTag: '' } }, created 阅读全文