parent parameter added

pull/4931/head
tugcekucukoglu 2023-12-05 13:08:25 +03:00
parent 2c9a39654d
commit c1bcb257de
1 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<span :class="cx('root')" v-bind="ptm('root')" data-pc-name="inputnumber">
<span :class="cx('root')" v-bind="getPTOptions('root')" data-pc-name="inputnumber">
<INInputText
ref="input"
:id="inputId"
@ -27,7 +27,7 @@
:unstyled="unstyled"
data-pc-section="input"
/>
<span v-if="showButtons && buttonLayout === 'stacked'" :class="cx('buttonGroup')" v-bind="ptm('buttonGroup')">
<span v-if="showButtons && buttonLayout === 'stacked'" :class="cx('buttonGroup')" v-bind="getPTOptions('buttonGroup')">
<INButton
:class="[cx('incrementButton'), incrementButtonClass]"
v-on="upButtonListeners"
@ -173,6 +173,14 @@ export default {
this.constructParser();
},
methods: {
getPTOptions(key) {
return this.ptm(key, {
parent: {
props: this.$parent?.$props,
state: this.$parent?.$data
}
});
},
getOptions() {
return {
localeMatcher: this.localeMatcher,