falvpingtai/src/index.vue
2019-11-25 15:27:58 +08:00

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>