This commit is contained in:
李四 2023-09-05 11:45:37 +08:00
parent 3eccf10f7b
commit 9f6eb5b3e7
4 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@ import pageFooter from './components/pageFooter/pageFooter.vue'
<style> <style>
html, html,
body { body {
width: 100vw; width: 100%;
height: 100vh; height: 100%;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }

View File

@ -26,6 +26,7 @@ const changeHandler = (active) => {
<style scoped> <style scoped>
.navigation { .navigation {
width: 100vw;
box-sizing: border-box; box-sizing: border-box;
} }

View File

@ -9,7 +9,7 @@
</template> </template>
<style scoped> <style scoped>
.footer { .footer {
width: 100%; width: 100vw;
text-align: center; text-align: center;
height: 150px; height: 150px;
background-color: black; background-color: black;

View File

@ -14,7 +14,6 @@ const projectlist = [
] ]
const images = ref(image) const images = ref(image)
const project_list = ref(projectlist) const project_list = ref(projectlist)
const text = ref('APP软件开发')
</script> </script>