platypush/platypush/backend/http/static/js/plugins/camera.cv/index.js

16 lines
280 B
JavaScript

Vue.component('camera-cv', {
template: '#tmpl-camera-cv',
mixins: [cameraMixin],
methods: {
startStreaming: function() {
this._startStreaming('cv');
},
capture: function() {
this._capture('cv');
},
},
});