emis-app/pages/print/bluetoothPrinter.vue

33 lines
289 B
Vue
Raw Normal View History

2024-02-02 07:19:01 +00:00
<template>
2024-05-09 18:29:39 +00:00
<tpx-page>
2024-05-10 14:32:39 +00:00
<tpx-bluetooth-print></tpx-bluetooth-print>
2024-05-09 18:29:39 +00:00
</tpx-page>
</template>
2024-02-02 07:19:01 +00:00
<script>
2024-05-10 14:32:39 +00:00
2024-05-09 15:08:34 +00:00
export default {
2024-05-09 18:29:39 +00:00
computed: {
2024-05-10 14:32:39 +00:00
2024-05-09 18:29:39 +00:00
},
2024-05-09 15:08:34 +00:00
data () {
return {
2024-05-10 14:32:39 +00:00
2024-05-09 15:08:34 +00:00
}
},
mounted () {
2024-05-10 14:32:39 +00:00
2024-05-09 15:08:34 +00:00
},
2024-05-10 03:30:15 +00:00
unmounted() {
2024-05-10 14:32:39 +00:00
2024-05-10 03:30:15 +00:00
},
2024-05-09 15:08:34 +00:00
methods: {
2024-05-10 14:32:39 +00:00
2024-02-02 07:19:01 +00:00
}
2024-05-09 15:08:34 +00:00
}
2024-02-02 07:19:01 +00:00
</script>
2024-05-10 03:15:31 +00:00
<style scoped lang="scss">
2024-05-10 14:32:39 +00:00
2024-05-09 15:08:34 +00:00
</style>