BackEnd/YTManager/frontend/src/index.ts

18 lines
374 B
TypeScript

import Vue from "vue";
import HelloComponent from "./components/Hello.vue";
import './index.css';
let v = new Vue({
el: "#app",
template: `
<div>
Name: <input v-model="name" type="text">
<hello-component :name="name" :initialEnthusiasm="5" />
</div>
`,
data: { name: "something" },
components: {
HelloComponent
}
});