方法1:
<
label
><
input
type
=
"checkbox"
id
=
"select"
v-model
=
"
checked
"
>
我已详细阅读理财协议
</
label
>
方法2:
label的for与input的id一致即可
<
input
type
=
"checkbox"
id
=
"select"
v-model
=
"
checked
"
>
<
label
for
=
"select"
>
我已详细阅读理财协议
</
label
>