-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
329 additions
and
77 deletions.
There are no files selected for viewing
112 changes: 112 additions & 0 deletions
112
vuetify-loader-cannot-read-match-of-undefined/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 51 additions & 19 deletions
70
vuetify-loader-cannot-read-match-of-undefined/src/App.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,61 @@ | ||
<template> | ||
<div id="app"> | ||
<img alt="Vue logo" src="./assets/logo.png"> | ||
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App"/> | ||
</div> | ||
<v-app> | ||
<v-app-bar | ||
app | ||
color="primary" | ||
dark | ||
> | ||
<div class="d-flex align-center"> | ||
<v-img | ||
alt="Vuetify Logo" | ||
class="shrink mr-2" | ||
contain | ||
src="https://cdn.vuetifyjs.com/images/logos/vuetify-logo-dark.png" | ||
transition="scale-transition" | ||
width="40" | ||
/> | ||
|
||
<v-img | ||
alt="Vuetify Name" | ||
class="shrink mt-1 hidden-sm-and-down" | ||
contain | ||
min-width="100" | ||
src="https://cdn.vuetifyjs.com/images/logos/vuetify-name-dark.png" | ||
width="100" | ||
/> | ||
</div> | ||
|
||
<v-spacer></v-spacer> | ||
|
||
<v-btn | ||
href="https://github.com/vuetifyjs/vuetify/releases/latest" | ||
target="_blank" | ||
text | ||
> | ||
<span class="mr-2">Latest Release</span> | ||
<v-icon>mdi-open-in-new</v-icon> | ||
</v-btn> | ||
</v-app-bar> | ||
|
||
<v-content> | ||
<HelloWorld/> | ||
</v-content> | ||
</v-app> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { Component, Vue } from 'vue-property-decorator' | ||
import Vue from 'vue' | ||
import HelloWorld from './components/HelloWorld.vue' | ||
@Component({ | ||
export default Vue.extend({ | ||
name: 'App', | ||
components: { | ||
HelloWorld | ||
} | ||
}, | ||
data: () => ({ | ||
// | ||
}) | ||
}) | ||
export default class App extends Vue {} | ||
</script> | ||
|
||
<style> | ||
#app { | ||
font-family: 'Avenir', Helvetica, Arial, sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
text-align: center; | ||
color: #2c3e50; | ||
margin-top: 60px; | ||
} | ||
</style> |
1 change: 1 addition & 0 deletions
1
vuetify-loader-cannot-read-match-of-undefined/src/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.