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

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.6k
1 个回答

其实是一样的:

<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>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Microsoft
子站问答
访问
宣传栏