Skip to content

Commit

Permalink
[xprototype#4/feature] Create new views to hooks examples
Browse files Browse the repository at this point in the history
  • Loading branch information
wilcorrea committed Mar 28, 2019
1 parent 76074a4 commit 51acf72
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/view/Dashboard/Example/TestWithHooks/TestWithHooksForm.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<template>
<prototype-form v-bind="bind" />
</template>

<script type="text/javascript">
import PrototypeView from 'src/app/Prototype/View/Prototype'
import TestWithHooks from 'src/domains/Example/Test/Prototype/TestWithHooks'
/**
* @typedef {TestWithHooksForm}
*/
export default {
/**
*/
extends: PrototypeView,
/**
*/
name: 'TestWithHooksForm',
/**
*/
prototype: TestWithHooks
}
</script>

<style
lang="stylus"
rel="stylesheet/stylus"
scoped
>
</style>
30 changes: 30 additions & 0 deletions src/view/Dashboard/Example/TestWithHooks/TestWithHooksTable.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<template>
<prototype-table v-bind="bind" />
</template>

<script type="text/javascript">
import PrototypeView from 'src/app/Prototype/View/Prototype'
import TestWithHooks from 'src/domains/Example/Test/Prototype/TestWithHooks'
/**
* @typedef {TestWithHooksTable}
*/
export default {
/**
*/
extends: PrototypeView,
/**
*/
name: 'TestWithHooksTable',
/**
*/
prototype: TestWithHooks
}
</script>

<style
lang="stylus"
rel="stylesheet/stylus"
scoped
>
</style>

0 comments on commit 51acf72

Please sign in to comment.