Newer
Older
operation_web / src / components / welcome.vue
@zhangqy zhangqy on 10 Jul 2020 387 bytes 前端开发
<template>
  <div id="welcome">
    <img src="./../../static/img/BGIMG12.png" alt id="Font" />
  </div>
</template>

<script>
export default {
  name: "welcome",
  data: function() {
    return {};
  },
  methods: {},
  mounted: function() {}
};
</script>

<style scoped>
#welcome {
  width: 100%;
  height: 100%;
}
#Font {
  color: white;
  margin: 0 auto;
  margin-top: 10%;
}
</style>