vue-resource安装
npm install vue-resource --save-dev
配置
在main.js中引入插件
//Resource 为自定义名 vue-resource 为插件的名字 import Vue from ‘vue‘ import Resource from ‘vue-resource‘
注册使用
//注册使用 vue-router Vue.use(Router)
使用 跳转了解钩子函数
//created钩子函数 函数执行时 ----- 组件实例化完毕,单页面还未显示 created(){ this.$http.get("https://jsonplaceholder.typicode.com/users") .then((data) => { console.log(data.body) }) }
原文地址:https://www.cnblogs.com/chz1905/p/10954349.html
时间: 2024-10-12 06:09:18