Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

VueApp

import type { VueApp } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/apps/Vue.ts";

INFO: Stubs for SCF Vue.js apps

interface VueApp <T> {
computed: {
[f: string]: () => any;
}
;
data: T;
el: string;
methods: {
[f: string]: (args?: any) => void;
}
;
created(): void;
}

§Type Parameters

§Properties

§
computed: {
[f: string]: () => any;
}
[src]
§
data: T
[src]
§
el: string
[src]
§
methods: {
[f: string]: (args?: any) => void;
}
[src]

§Methods

§
created(): void
[src]