Coder Social home page Coder Social logo

about denpendence vue-resource about vue-auth HOT 5 CLOSED

hainuo avatar hainuo commented on August 29, 2024
about denpendence vue-resource

from vue-auth.

Comments (5)

websanova avatar websanova commented on August 29, 2024

How are you importing it?

from vue-auth.

hainuo avatar hainuo commented on August 29, 2024

@websanova now i use 1.1.0-beta
there's a question about router and http;
i have a try

import Vue from 'vue';
import VueRouter from 'vue-router';
import VueAuth from '@websanova/vue-auth';
import VueResource from 'vue-resource';

Vue.use(VueRouter);
Vue.use(VueResource);

const Foo = { template: '<div>Foo</div>' };
const Bar = { template: '<div>bar</div>' };
const routes = [
  { path: '/login', component: Foo },
  { path: '/bar', component: Bar },
];
const router = new VueRouter({
  routes, 
});
Vue.use(VueAuth, {
  router,  //if i didn't use router like this , it will report error this.options.router  undefinded
  //http: VueResource,   //if use this or not use, it  will report error  this.options.http.interceptors is undefinded
});
const app = new Vue({
  router,
}).$mount('#app');
console.log(app);

so,how and defind the http variable .
and when i use 1.0.10-dev i just use Vue.user(VueResource) and didn't set http it will run well

from vue-auth.

hainuo avatar hainuo commented on August 29, 2024

i read the doc of vue-resource and found the usecase

Vue.http.interceptors.push((request, next)  => {
  // modify request
  request.method = 'POST';
  // continue to next interceptor
  next((response) => {
    // modify response
    response.body = '...';
  });
});

so i have try this

Vue.use(VueAuth, {
  router,
  http: Vue.http,
});

and it works not report errors;

so why use the this.$http in vue lifetime if this.$http was exist

from vue-auth.

hainuo avatar hainuo commented on August 29, 2024

sorry for the question, i know that this's not the same scop. i want to know why not using exist the http to apply a http definded by user. It would be appreciated if you would like to share.

from vue-auth.

websanova avatar websanova commented on August 29, 2024

Not really sure what the issue you're having exactly but glad it's working. Btw, the plugin does not use $http instance, it uses http directly, so not sure about your second question either.

from vue-auth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.