[Vuejs]-How to use Typescript with Laravel Mix and Vue SFC?

0👍

When using SFC with Typescript you should extend:

<script lang="ts">
import Axios from 'axios';
import Vue from 'vue';

export default Vue.extend({
  ...
})
</script>

Leave a comment