Skip to content

Commit 43169cb

Browse files
committed
v0.3.61
1 parent 0df3e10 commit 43169cb

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

lib/components/atoms/select/select.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:class="getClass"
66
@input="handleChange"
77
>
8-
<option v-for="(item, index) in optionsData" :key="index" :value="index">
8+
<option v-for="(item, index) in options" :key="index" :value="index">
99
{{ item[textField] }}
1010
</option>
1111
</select>
@@ -69,9 +69,7 @@ export default {
6969
}
7070
7171
if (!(this.state || this.state === null)) {
72-
result.push(
73-
"--error"
74-
);
72+
result.push("--error");
7573
}
7674
7775
return result.join(" ");
@@ -98,6 +96,7 @@ export default {
9896
}
9997
10098
result = [...result, ...this.options];
99+
101100
return result;
102101
},
103102
},

lib/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// albert
21
import * as seo from "vuefront/lib/seo";
32
const MainConfig = {
43
plugins: {},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuefront",
3-
"version": "0.3.60",
3+
"version": "0.3.61",
44
"description": "vuefront",
55
"files": [
66
"lib",

src/components/atoms/select/select.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:class="getClass"
66
@input="handleChange"
77
>
8-
<option v-for="(item, index) in optionsData" :key="index" :value="index">
8+
<option v-for="(item, index) in options" :key="index" :value="index">
99
{{ item[textField] }}
1010
</option>
1111
</select>
@@ -69,9 +69,7 @@ export default {
6969
}
7070
7171
if (!(this.state || this.state === null)) {
72-
result.push(
73-
"--error"
74-
);
72+
result.push("--error");
7573
}
7674
7775
return result.join(" ");
@@ -98,6 +96,7 @@ export default {
9896
}
9997
10098
result = [...result, ...this.options];
99+
101100
return result;
102101
},
103102
},

0 commit comments

Comments
 (0)