You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
369 B
28 lines
369 B
<template>
|
|
<view class="main_container">
|
|
<Header></Header>
|
|
<view class="login">
|
|
<form @submit="formSubmit">
|
|
</form>
|
|
</view>
|
|
<view class="login_bg"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import Header from '@/pages/header.vue'
|
|
export default {
|
|
components: {
|
|
Header
|
|
},
|
|
data() {
|
|
return {
|
|
};
|
|
},
|
|
methods: {
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|