mirror of
https://github.com/vuejs/vue.git
synced 2024-11-21 20:28:54 +00:00
8 lines
130 B
TypeScript
8 lines
130 B
TypeScript
const vm = new Vue({
|
|
template: '<div>hi</div>'
|
|
})
|
|
|
|
const options: Vue.ComponentOptions<Vue> = {
|
|
template: '<div>test</div>'
|
|
}
|