DarkFenix
DarkFenix

Reputation: 746

How to use the kind of TypeScript in a Single File Component with Vue?

I'm trying to use the TypeScript benefits in a Vue SFC,

Install the ts-loader, typescript dependencies

I added the tsconfig.json configuration

// tsconfig.json
{
    "compilerOptions": {
      // this aligns with Vue's browser support
      "target": "es5",
      // this enables stricter inference for data properties on `this`
      "strict": true,
      // if using webpack 2+ or rollup, to leverage tree shaking:
      "module": "es2015",
      "moduleResolution": "node"
    }

}

But when trying to compile the next component it shows me error.

<script lang="ts">
import Vue from "vue";
import { mapState,mapGetters } from 'vuex'


export default Vue.extend({
    data() {
        return {
            number : 0
        }
    },
    methods:{
        // error void
        upCount() : void {
            this.$store.commit('increment');
        },
        downCount() : void{
            this.$store.commit('decrement');
        },
        upCountBy() : void {
            this.$store.commit('incrementBy',{count : this.number});
        }

    },
....

the error

Module parse failed: Unexpected token (45:12) You may need an appropriate loader to handle this file type.

I am using VueJs together with WebPack from a Laravel and Laravel Mix base installation. How do I solve this?

Upvotes: 1

Views: 1963

Answers (2)

bastian83
bastian83

Reputation: 31

Try and flip the order of Connum's suggested answer.

module: {
      rules: [
                {
                    test: /\.vue$/,
                    use: 'vue-loader',
                },
                {
                    test: /\.ts$/,
                    exclude: /node_modules/,
                    use: [{ loader: 'ts-loader', options: { appendTsSuffixTo: [/\.vue$/] } }],
                },
              ]
}

Worked for me. You have installed the vue-loader?

npm i -D ts-loader typescript vue-loader

Upvotes: 2

Sarah Gro&#223;
Sarah Gro&#223;

Reputation: 10879

When I started using Vue and TypeScript, I ran into similiar problems at first and it took me quite a while to get it to work. Try adding this to your webpack.config.js

...
    module: {
      rules: [
        {
          test: /\.tsx?$/,
          use: [{
            loader: 'ts-loader',
            options: {
              appendTsSuffixTo: [ /\.vue$/ ]
            }
          }],
          exclude: /node_modules/
        },
        // make sure vue-loader comes after ts-loader
        {
          test: /\.vue$/,
          loader: 'vue-loader'
        },
...

Upvotes: 2

Related Questions