Skip to content

Commit

Permalink
fixes typing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Morl99 committed Oct 10, 2021
1 parent 4b8ce13 commit c259e62
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
18 changes: 11 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"vue": "2.6.14",
"vue-class-component": "7.2.6",
"vue-file-agent": "1.7.3",
"vue-frag": "1.1.5",
"vue-frag": "1.3.1",
"vue-property-decorator": "9.1.2",
"vue-router": "3.5.2",
"vuetify": "2.5.9"
Expand Down
8 changes: 4 additions & 4 deletions src/components/ReportUrlFetcher.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div v-frag>
<fragment>
<v-text-field
v-model="url"
label="Url"
Expand Down Expand Up @@ -70,14 +70,14 @@
>
Fetch
</v-btn>
</div>
</fragment>
</template>

<script lang="ts">
import Vue from "vue"
import VueFileAgent from "vue-file-agent"
import { Component } from "vue-property-decorator"
import frag from "vue-frag"
import { Fragment } from "vue-frag"
// Define the props by using Vue's canonical way.
const ReportUrlFetcherProps = Vue.extend({
props: {
Expand All @@ -86,7 +86,7 @@ const ReportUrlFetcherProps = Vue.extend({
})
Vue.use(VueFileAgent)
@Component({
directives: { frag },
components: { Fragment },
})
export default class ReportUrlFetcher extends ReportUrlFetcherProps {
private url = ""
Expand Down

0 comments on commit c259e62

Please sign in to comment.