Add vue app to photo.html
This commit is contained in:
parent
ad028bc522
commit
1a6431b922
6 changed files with 21 additions and 2 deletions
11
showbits-thermal-printer-ui/src/photo.ts
Normal file
11
showbits-thermal-printer-ui/src/photo.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { createApp } from "vue";
|
||||
import App from "./AppPhoto.vue";
|
||||
|
||||
// The type of App contains any in its type parameters, according to vscode.
|
||||
// Presumably, this is what triggers the lint.
|
||||
//
|
||||
// @vue/eslint-config-typescript turns this option off entirely.
|
||||
// https://github.com/vuejs/eslint-config-typescript/blob/bcdeb741521a718d44dfe77aadcf6d0702b1fd21/src/internals.ts#L139
|
||||
//
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
||||
createApp(App).mount("#app");
|
||||
Loading…
Add table
Add a link
Reference in a new issue