Skip to content

Commit 66b87e8

Browse files
committed
Demo Version Release
1 parent 97fb84e commit 66b87e8

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ npm install vue-motion
3434

3535
import { createApp } from 'vue'
3636
import App from './App.vue'
37-
import '@/styles/animations.css'
37+
import "vue-motion/dist/vue-motion.css";
3838

3939
createApp(App).mount('#app')
4040
```
@@ -56,7 +56,7 @@ createApp(App).mount('#app')
5656
<script setup>
5757
import { ref } from 'vue'
5858
// Import the component
59-
import { Fade } from '../../src/components/Fade.vue'
59+
import { Fade } from "vue-motion";
6060
const show = ref(true)
6161
</script>
6262

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"name": "vue-motion",
3-
"version": "0.0.1",
3+
"version": "0.9.0",
44
"private": false,
55
"type": "module",
66
"main": "dist/vue-motion.umd.js",
77
"module": "dist/vue-motion.es.js",
8+
"unpkg": "dist/vue-motion.umd.js",
9+
"jsdelivr": "dist/vue-motion.umd.js",
810
"engines": {
911
"node": "^20.19.0 || >=22.12.0"
1012
},
@@ -16,11 +18,12 @@
1618
},
1719
"keywords": [
1820
"vue-motion",
19-
"vue3 animations",
20-
"Transition",
21+
"vue3",
22+
"vue transition",
2123
"vue animations",
22-
"Transition for vue",
23-
"component based animations"
24+
"vue motion library",
25+
"component animations",
26+
"motion"
2427
],
2528
"files": [
2629
"dist"

0 commit comments

Comments
 (0)