
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<template>
<footer>
<address>Copyright (C) All Right Reserved.</address>
</footer>
</template>
<script>
export default {
data() {
return {};
},
methods: {},
watch: {},
computed: {},
components: {},
mounted() {
console.log("admin footer mounted");
},
};
</script>
<style scoped>
footer {
max-width: 100%;
padding: 10px 0;
grid-area: footer;
background: #ddd;
}
footer address{
font-style: normal;
text-align: center;
color: #fff;
}
</style>