Skip to content

Instantly share code, notes, and snippets.

View indus's full-sized avatar
🗺️
World research in progress… disasters included

Stefan Keim indus

🗺️
World research in progress… disasters included
View GitHub Profile
@indus
indus / in.ts
Last active March 4, 2021 19:12
Typescript Pattern for Vue Components
module MyModule {
export class MyClass extends Vue {
// define instance methods
myMethod() {
// the TS-Type of "this" is defined as Instance of MyClass
console.log("myMethod");
}
myOtherMethod() {
console.log("myOtherMethod");