vueless 1.2.8-beta.4 → 1.2.8-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "1.2.8-beta.4",
3
+ "version": "1.2.8-beta.5",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
@@ -104,7 +104,7 @@ watch(
104
104
  );
105
105
 
106
106
  onMounted(() => {
107
- if (localValue.value) {
107
+ if (localValue.value !== undefined && localValue.value !== null && localValue.value !== "") {
108
108
  setValue(stringLocalValue.value);
109
109
  }
110
110
  });