初始化

This commit is contained in:
24kycj
2024-11-16 17:53:37 +08:00
commit 5f666923c2
90 changed files with 19100 additions and 0 deletions
@@ -0,0 +1,26 @@
<template>
<div :style="'background-image:url(' + bgi + ');background-repeat: no-repeat;background-position: 50% 50%;'" class="empty"></div>
</template>
<script>
export default {
name: "fileEmpty",
data() {
return {
fileList: [],
};
},
methods: {},
computed: {
bgi() {
return this.$t("work.dropBg");
},
},
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style lang="less" scoped>
.empty {
height: 345px;
width: 100%;
}
</style>