vue-spear-tip 0.1.0

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.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # Vue TypeScript Class Components
2
+ ## (reactive OOP frontend programming)
3
+
4
+ Vue 3 simple class components with @Watch, @Computed, @Prop decorators.
5
+ And UI KIT on them.
6
+
7
+ #### Install
8
+ ```
9
+ npm install vue-spear-tip
10
+ ```
11
+
12
+ Use with vite + html/pug + typescript classes + sass/scss
13
+
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "vue-spear-tip",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "main": "./dist/vue-ts-class-components.umd.cjs",
6
+ "module": "./dist/vue-ts-class-components.es.js",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/vue-ts-class-components.es.js",
10
+ "require": "./dist/vue-ts-class-components.umd.cjs"
11
+ }
12
+ },
13
+ "files": ["dist"],
14
+ "peerDependencies": {
15
+ "vue": "^3.5.22"
16
+ },
17
+ "devDependencies": {
18
+ "vue": "^3.5.22"
19
+ }
20
+ }