I'm feeling really overwhelmed by Typescript. I'm trying to create an event that changes the Google website when a button is clicked. However, when I press the button, the console displays the following error message: [error message on console] DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/content.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
https://i.sstatic.net/Dw0N9.png
I'm working in a development environment using Nuxt.js, Vue.js, Vuetify.js, and Typescript. I'm a beginner engineer who recently joined an IT company. However, my new project involves Nuxt.js and Typescript. I would appreciate any advice on the code below.
<template>
<v-card>
<v-text-filed><v-btn @click="onClickButton">google</v-btn></v-text-filed>
</v-card>
</template>
<script lang="ts">
impory {Component,Vue} from'nuxt-property-decorator'
import axios from 'axios'
@Component
export default class typeI scriptLesson extends Vue{
public google:any="";
onClickButton(){
this.google='https://google.com';
}
}
</script>