Wide Angle plugin with working sample

This commit is contained in:
Jarek Rozanski 2023-03-10 21:02:26 +00:00
parent 8e400e1b62
commit 627d04c1a7
18 changed files with 1524 additions and 9 deletions

View file

@ -1,7 +1,9 @@
import { initWideAngle } from "./src";
export default {
install: (app, options) => {
}
}
install: (app, options) => {
initWideAngle(options)
.then(waa => { app.provide('waa', waa); })
.catch(e => { console.error("Failed to load Wide Angle Plugin", e)});
}
}