1234567891011121314151617181920212223242526 |
- <template>
- <div class="layout-footer pd15">
- <div class="layout-footer-warp">
- <el-link href="#" target="_blank" type="info"> 成都丰窝科技有限公司 </el-link>
- </div>
- </div>
- </template>
- <script setup lang="ts" name="layoutFooter">
- // 此处需有内容(注释也得),否则缓存将失败
- </script>
- <style scoped lang="scss">
- .layout-footer {
- width: 100%;
- display: flex;
- &-warp {
- margin: auto;
- text-align: center;
- animation: error-num 0.3s ease;
- :deep(.el-link){
- //color: var(--el-text-color-secondary);
- }
- }
- }
- </style>
|