Members, Circuits
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
import { defineComponent, onMounted, PropType, ref, watch } from 'vue'
|
||||
import { useCircuitStore } from '@store/CircuitStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { IImgGallery, IUserFields, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
@@ -31,11 +33,15 @@ export default defineComponent({
|
||||
setup(props, { emit }) {
|
||||
|
||||
const userStore = useUserStore()
|
||||
const circuitStore = useCircuitStore()
|
||||
const globalStore = useGlobalStore()
|
||||
// const $q = useQuasar()
|
||||
const { t } = useI18n()
|
||||
// const $router = useRouter()
|
||||
|
||||
const myrec = ref(<any | null>null)
|
||||
const circuit = ref(<any | null>null)
|
||||
|
||||
const showingtooltip = ref(false)
|
||||
|
||||
watch(() => props.prop_myrec, (newval, oldval) => {
|
||||
|
||||
@@ -44,7 +50,7 @@ export default defineComponent({
|
||||
|
||||
function mounted() {
|
||||
if (props.prop_myrec) {
|
||||
myrec.value = props.prop_myrec
|
||||
circuit.value = props.prop_myrec
|
||||
}
|
||||
}
|
||||
|
||||
@@ -60,7 +66,7 @@ export default defineComponent({
|
||||
|
||||
return {
|
||||
t,
|
||||
myrec,
|
||||
circuit,
|
||||
costanti,
|
||||
// naviga,
|
||||
setCmd,
|
||||
@@ -70,6 +76,9 @@ export default defineComponent({
|
||||
toolsext,
|
||||
fieldsTable,
|
||||
cmdExt,
|
||||
globalStore,
|
||||
circuitStore,
|
||||
showingtooltip,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user