Removed resizer
parent
1eb66a6d91
commit
295a3f899b
|
@ -3,7 +3,7 @@
|
||||||
<p>A model can be bound using the standard <i>v-model</i> directive.</p>
|
<p>A model can be bound using the standard <i>v-model</i> directive.</p>
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
<div class="card flex justify-content-center">
|
<div class="card flex justify-content-center">
|
||||||
<Textarea v-model="value" rows="5" cols="30" />
|
<Textarea v-model="value" rows="5" cols="30" style="resize: none" />
|
||||||
</div>
|
</div>
|
||||||
<DocSectionCode :code="code" />
|
<DocSectionCode :code="code" />
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<p>When <i>disabled</i> is present, the element cannot be edited and focused.</p>
|
<p>When <i>disabled</i> is present, the element cannot be edited and focused.</p>
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
<div class="card flex justify-content-center">
|
<div class="card flex justify-content-center">
|
||||||
<Textarea v-model="value" rows="5" cols="30" disabled />
|
<Textarea v-model="value" rows="5" cols="30" disabled style="resize: none" />
|
||||||
</div>
|
</div>
|
||||||
<DocSectionCode :code="code" />
|
<DocSectionCode :code="code" />
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
<div class="card flex justify-content-center">
|
<div class="card flex justify-content-center">
|
||||||
<span class="p-float-label">
|
<span class="p-float-label">
|
||||||
<Textarea v-model="value" rows="5" cols="30" />
|
<Textarea v-model="value" rows="5" cols="30" style="resize: none" />
|
||||||
<label>Username</label>
|
<label>Username</label>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<p>Invalid state style is added using the <i>p-invalid</i> class to indicate a failed validation.</p>
|
<p>Invalid state style is added using the <i>p-invalid</i> class to indicate a failed validation.</p>
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
<div class="card flex justify-content-center">
|
<div class="card flex justify-content-center">
|
||||||
<Textarea v-model="value" rows="5" cols="30" class="p-invalid" />
|
<Textarea v-model="value" rows="5" cols="30" class="p-invalid" style="resize: none" />
|
||||||
</div>
|
</div>
|
||||||
<DocSectionCode :code="code" />
|
<DocSectionCode :code="code" />
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue