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 eeea0d3 commit a2b0cd6Copy full SHA for a2b0cd6
platform/nativescript/runtime/components/frame.js
@@ -1,8 +1,6 @@
1
import { setFrame, getFrame, deleteFrame } from '../../util/frame'
2
import { warn } from 'core/util/debug'
3
4
-let idCounter = 1
5
-
6
export default {
7
props: {
8
id: {
@@ -48,10 +46,6 @@ export default {
48
46
this._isFirstRender = true
49
47
let properties = {}
50
51
- if (getFrame(this.$props.id)) {
52
- properties.id = this.$props.id + idCounter++
53
- }
54
55
this.properties = Object.assign({}, this.$attrs, this.$props, properties)
56
57
setFrame(this.properties.id, this)
0 commit comments