We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bf44ef commit 0210702Copy full SHA for 0210702
packages/design-core/src/App.vue
@@ -20,7 +20,7 @@ import {
20
import { isVsCodeEnv } from '@opentiny/tiny-engine-common/js/environments'
21
import { useBroadcastChannel } from '@vueuse/core'
22
import { constants } from '@opentiny/tiny-engine-utils'
23
-import Login from './login.vue'
+import Login from './login/Index.vue'
24
25
const { BROADCAST_CHANNEL } = constants
26
packages/design-core/src/login/RegisterSuccess.vue
@@ -40,7 +40,7 @@ export default {
40
const copy = () => {
41
const textarea = document.createElement('textarea')
42
43
- textarea.value = `${publicKey}`
+ textarea.value = `${publicKey.value}`
44
document.body.appendChild(textarea)
45
textarea.select()
46
document.execCommand('copy')
0 commit comments