create-nodality-vue 1.0.0-beta.4 → 1.0.0-beta.6

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": "create-nodality-vue",
3
- "version": "1.0.0-beta.4",
3
+ "version": "1.0.0-beta.6",
4
4
  "description": "A scaffolding tool for creating Vue.js projects integrated with Nodality.",
5
5
  "main": "bin/index.js",
6
6
  "bin": {
@@ -14,10 +14,14 @@ export default {
14
14
  };
15
15
  },
16
16
  created() {
17
+ console.log("ELELE");
17
18
  this.textInstance = new Text(this.welcomeMessage).set({
18
19
  size: "S1",
19
20
  color: "#1abc9c",
20
21
  });
22
+
23
+
24
+ console.log(this.textInstance);
21
25
  },
22
26
  };
23
27
  </script>
@@ -33,6 +33,5 @@ function updateMessage(event) {
33
33
  </script>
34
34
 
35
35
  <template>
36
- <input ref="my-input" :value="msg" @input="updateMessage" />
37
- <div ref="my-comp"/>
36
+ <h2>Hello from static Vue</h2>
38
37
  </template>
@@ -1,3 +1,4 @@
1
+ console.log("Hello");
1
2
  import { createApp } from "vue";
2
3
  import App from "./App.vue";
3
4