<template>
<div>
<p>选择的地址: {{value}}</p>
<DkAddonLinkInput v-model="value" :default-option="options"/>
</div>
</template>
<script>
export default {
data() {
return {
value: '',
options: [
{"title": "我的订单", "url": "\/demo_wx\/order\/index.html?p=16"},
{"title": "我的钱包", "url": "\/demo_wx\/wallet\/index.html?p=16"},
{"title": "我的卡券", "url": "\/demo_wx\/coupon\/index.html?p=16"}
]
}
}
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22