mirror of https://github.com/vuejs/vue.git
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
|
const vm = new Vue({
|
||
|
template: "<div>hi</div>"
|
||
|
});
|
||
|
|
||
|
const options: Vue.ComponentOptions<Vue> = {
|
||
|
template: "<div>test</div>"
|
||
|
};
|