智慧画屏客户端
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

3 years ago
  1. <template>
  2. <view class="main_container">
  3. <Header></Header>
  4. <view class="login">
  5. <form @submit="formSubmit">
  6. </form>
  7. </view>
  8. <view class="login_bg"></view>
  9. </view>
  10. </template>
  11. <script>
  12. import Header from '@/pages/header.vue'
  13. export default {
  14. components: {
  15. Header
  16. },
  17. data() {
  18. return {
  19. };
  20. },
  21. methods: {
  22. }
  23. };
  24. </script>
  25. <style scoped>
  26. </style>