Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use plugins like vue-resource when using Vue.js with Typescript?

I started using Typescript and trying to apply it to my project. However, I can't get Vue.js plugins like vue-resource to work with it.

When I use

this.$http.post()

I get the error:

error TS2339: Property '$http' does not exist on type 'typeof Vue'.

which makes sense because I am in a class context. But how can I do that? This is my full component:

<template>
<div>
  <h1>Sign up</h1>

  <form>
    <div class="form-group">
      <label for="name">Name</label>
      <input v-model="name" type="text" class="form-control" name="name" placeholder="Name">
      <small class="form-text text-muted">Please provide a name.</small>
    </div>
    <div class="form-group">
      <label for="name">Password</label>
      <input v-model="password" type="password" class="form-control" name="password" placeholder="Password">
      <small class="form-text text-muted">Please provide a password.</small>
    </div>
    <input type="submit" class="btn btn-primary" value="Submit" @click.prevent="save">
  </form>
</div>
</template>

<script lang="ts">
import Component from 'vue-class-component'

@Component
export default class SignUp extends Vue {
  name: string = ''
  password: string = ''

  save(): void {
    this.$http.post('/api/sign-up', {
        name: this.name,
        password: this.password
      })
      .then((response: any) => {
        console.log(response)
      })
  }
}
</script>

And I register vue-resource in my main.ts like this:

import Vue from "vue"
import router from "./router"
import App from "./app"

const VueResource = require('vue-resource')

Vue.use(VueResource)

new Vue({
  el: "#app",
  router,
  template: "<App/>",
  components: { App },
});
like image 232
Julian Avatar asked Jun 18 '17 13:06

Julian


People also ask

Can I use TypeScript with Vue?

Vue is written in TypeScript itself and provides first-class TypeScript support. All official Vue packages come with bundled type declarations that should work out-of-the-box.

What are called plugins in VUE JS?

A Vue plugin is an object with an install method that takes two parameters: the global Vue object. and an object containing user-defined options.


1 Answers

Use import instead of require for VueResource too.

import VueResource from 'vue-resource'
like image 190
Luis Orduz Avatar answered Sep 30 '22 05:09

Luis Orduz