17 lines
229 B
Vue
17 lines
229 B
Vue
<template>
|
|
<div class="box"></div>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
.box {
|
|
min-height: 100vh;
|
|
background-color: #f6f6f6;
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
name: "index",
|
|
data() {
|
|
return {};
|
|
}
|
|
};
|
|
</script> |