Newer
Older
operation_web / src / components / welcome.vue
@田松 田松 on 11 Jan 2021 365 bytes +++配置管理-项目管理
<template>
  <div id="welcome">
    <img src="./../../static/img/BGIMG12.jpg" 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 {
  width: 100%;
  height: 100%;
}
</style>