Feature: Try to add initial structure for pin-form

This commit is contained in:
winkidney
2019-03-21 17:34:17 +08:00
committed by Isaac Bythewood
parent 897d80170f
commit 9b066771a9
4 changed files with 170 additions and 109 deletions

View File

@@ -116,6 +116,19 @@ function HeightTable(blockMargin) {
return self;
}
Vue.component(
'pin-form',
{
data: function () {
return {};
},
props: ['url'],
template: "#pin-form-template",
mounted: function () {},
methods: {}
}
);
Vue.component(
'light-box',
@@ -435,6 +448,9 @@ var app = new Vue({
);
},
methods: {
showPinForm: function() {
},
onViewPin: function(pin) {
this.currentPin = pin;
},