mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-11 13:10:26 +08:00
40 lines
740 B
Vue
40 lines
740 B
Vue
<template>
|
|
<div class="n-doc-section">
|
|
<div class="n-doc-section__header">
|
|
Multiple Labels
|
|
</div>
|
|
<div
|
|
class="n-doc-section__view"
|
|
style="flex-wrap: nowrap;"
|
|
>
|
|
<!--EXAMPLE_START-->
|
|
<n-input-key-value-pairs
|
|
v-model="test1"
|
|
placeholder-key="placeholder1"
|
|
placeholder-value="placeholder2"
|
|
/>
|
|
<!--EXAMPLE_END-->
|
|
</div>
|
|
<pre class="n-doc-section__inspect">v-model: {{ test1 }}</pre>
|
|
<n-doc-source-block>
|
|
<!--SOURCE-->
|
|
</n-doc-source-block>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
test1: [
|
|
{
|
|
key: 'key1',
|
|
value: 'value1'
|
|
},
|
|
{}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
</script>
|