czydojade/resources/ts/components/line.ts
2018-09-15 15:15:40 +02:00

11 lines
305 B
TypeScript

import Vue from 'vue'
import { Component, Prop } from 'vue-property-decorator'
import { Line } from "../model";
@Component({ template: require('../../components/line.html' )})
export class LineComponent extends Vue {
@Prop(Object)
public line: Line;
}
Vue.component('LineSymbol', LineComponent);