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
子站问答
访问
宣传栏