Remove console.log
This commit is contained in:
parent
b9646be0ea
commit
d2dcc541a1
|
@ -2,7 +2,7 @@
|
||||||
import type { BackendError, Application } from '~/types'
|
import type { BackendError, Application } from '~/types'
|
||||||
|
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
import { ref, reactive, computed, watchEffect } from 'vue'
|
import { ref, reactive, computed } from 'vue'
|
||||||
import { computedEager } from '@vueuse/core'
|
import { computedEager } from '@vueuse/core'
|
||||||
import { useGettext } from 'vue3-gettext'
|
import { useGettext } from 'vue3-gettext'
|
||||||
import { uniq } from 'lodash-es'
|
import { uniq } from 'lodash-es'
|
||||||
|
@ -83,10 +83,6 @@ const toggleAllScopes = (parent: typeof allScopes['value'][number]) => {
|
||||||
scopeArray.value = [...scopes]
|
scopeArray.value = [...scopes]
|
||||||
}
|
}
|
||||||
|
|
||||||
watchEffect(() => {
|
|
||||||
console.log(scopeArray.value)
|
|
||||||
})
|
|
||||||
|
|
||||||
const scopeParents = computedEager(() => [
|
const scopeParents = computedEager(() => [
|
||||||
{
|
{
|
||||||
id: 'read',
|
id: 'read',
|
||||||
|
|
Loading…
Reference in New Issue