Skip to content

Commit

Permalink
fix: 🐛 Fix the display ID value type error
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Jan 13, 2025
1 parent 9e31c84 commit 2b7ee79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import { getDeviceId } from '../helper.js'
export default {
props: {
modelValue: {
type: String,
value: '',
type: [String, Number],
value: void 0,
},
data: {
type: Object,
Expand Down

0 comments on commit 2b7ee79

Please sign in to comment.