Skip to content

Commit

Permalink
fix vue-freezeframe types
Browse files Browse the repository at this point in the history
  • Loading branch information
nickforddev committed Sep 27, 2020
1 parent 3b0d86d commit 43ee788
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/vue-freezeframe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ https://codesandbox.io/s/vue-freezeframe-demo-jibmp
## Project setup

```bash
yarn add vue-freezeframe # or npm install vue-freezeframe
npm install vue-freezeframe
```

## Install globally
Expand Down
5 changes: 1 addition & 4 deletions packages/vue-freezeframe/src/components/VueFreezeframe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ import { FreezeframeOptions, Freeze } from 'freezeframe/types'
@Component({
props: {
src: {
type: [String, Object],
default: null,
},
src: [String, Object],
options: Object,
},
})
Expand Down
2 changes: 2 additions & 0 deletions packages/vue-freezeframe/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"compilerOptions": {
"module": "es2020",
"target": "es2015",
"declaration": true,
"declarationDir": "./dist/",
"allowJs": true,
"strict": true,
"jsx": "preserve",
Expand Down

0 comments on commit 43ee788

Please sign in to comment.