-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
closes #240
- Loading branch information
Showing
13 changed files
with
615 additions
and
575 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,31 @@ | ||
<template> | ||
<v-app> | ||
<v-container> | ||
<v-card v-ripple> | ||
<v-card v-ripple v-resize="onResize"> | ||
<div style="text-align: center"> | ||
<v-img src="@/vuetify.png" style="display: inline-flex"></v-img> | ||
</div> | ||
<v-card-text> | ||
<v-text-field></v-text-field> | ||
</v-card-text> | ||
</v-card> | ||
<pre>{{ { | ||
directives: [{ | ||
name: "resize" | ||
}] | ||
} }}</pre> | ||
<setup-component /> | ||
</v-container> | ||
</v-app> | ||
</template> | ||
|
||
<script> | ||
import SetupComponent from './Setup.vue' | ||
const img = require('@/vuetify.png?vuetify-preload') | ||
console.log(img, img.default) | ||
export default {} | ||
export default { | ||
components: { | ||
SetupComponent | ||
} | ||
} | ||
</script> | ||
|
||
<docs> | ||
This is the documentation for App.vue | ||
</docs> |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<template> | ||
<v-card v-ripple> | ||
Setup component | ||
</v-card> | ||
</template> | ||
|
||
<script setup> | ||
// | ||
</script> |
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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
const { directives } = require('./generator') | ||
|
||
module.exports = function match (_, { kebabAttr, camelAttr: attr }) { | ||
if (directives.includes(attr)) return [attr, `import ${attr} from 'vuetify/lib/directives/${kebabAttr}'`] | ||
if (directives.includes(attr)) return [attr, `import ${attr} from 'vuetify/lib/directives/${kebabAttr}';`] | ||
} |
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
Oops, something went wrong.