Update BaseComponent.vue

pull/5507/head
mertsincan 2024-02-13 09:38:20 +00:00
parent 964037361e
commit e54e59c117
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ export default {
$_attrsNoPT() {
// $attrs without `pt:*`
return Object.entries(this.$attrs || {})
.filter(([key]) => !key?.startsWith('pt:') && !key?.startsWith('sx:'))
.filter(([key]) => !key?.startsWith('pt:'))
.reduce((acc, [key, value]) => {
acc[key] = value;