index.vue
273 Bytes
<template>
<div class="index1"></div>
</template>
<style lang="less" scoped>
.index1 {
height: 100%;
background: green;
color: #fff;
}
</style>
<script>
import config from "./config";
export default {
name: "index1",
components: {
config
}
};
</script>