We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4d468 commit dda205eCopy full SHA for dda205e
docs/guide/essentials/passing-data.md
@@ -44,6 +44,11 @@ const Password = {
44
type: Number
45
}
46
},
47
+ data() {
48
+ return {
49
+ password: ''
50
+ }
51
+ },
52
computed: {
53
error() {
54
if (this.password.length < this.minLength) {
@@ -86,7 +91,6 @@ Sometimes you may need to write a test for a side effect of a prop changing. Thi
86
91
</template>
87
92
88
93
<script>
89
-
90
94
export default {
95
props: {
96
show: {
0 commit comments