当前位置: 首页 > 知识库问答 >
问题:

javascript - vue3,js版,我想用async await该怎么写?

施越彬
2023-04-27

vue2我这样写没问题,vue3,js版我改怎么写。

export default {
  name: 'Login',
  data() {
    return {
    };
  },
  created() {
    this.getSession();
  },
  methods: {
    async handleLogin() {
      const res1 = await this.$API.login.login(this.loginForm)
    }
  }
};

共有1个答案

邢献
2023-04-27

其实是一样的:

<script setup>
import { ref } from 'vue'
  function d () {}
  async function f () {
    await d()
  }

const msg = ref('Hello World!')
</script>

<template>
  <h1>{{ msg }}</h1>
  <input v-model="msg">
</template>
 类似资料: