login.vue 548 Bytes
<template>
  <div class="login_container">
    <UserCommon>
      <template slot="top">
        <NafmHeader :isBgImg="false" bgColor="transparent"/>
      </template>
    </UserCommon>
  </div>
</template>
<script>
import UserCommon from '@/components/UserCommon'
export default {
  name: 'Login',
  components:{
    UserCommon
  },
  data() {
    return {}
  },
  methods: {
    handleBack(){
      this.$router.back()
    }
  }
}
</script>
<style lang="less" scoped>
.login-container {
  width: 100%;
  height: 100%;
  font-size: 40px;
}
</style>