Slide 16
Slide 16 text
Inside the DEMO: Vue CLI Plugin - axios
import Vue from "vue";
import axios, { AxiosResponse } from "axios";
export default Vue.extend({
methods: {
// Azure Text Translator API
の実行
async invokeTranslator(text: string): Promise {
const res: AxiosResponse = await axios.post(
"https://xxx-vue.azurewebsites.net/api/translate", { target: text }
);
return res.data;
}
}
});