Skip to content

Commit

Permalink
feat: restructured folders to better support integration with vue sty…
Browse files Browse the repository at this point in the history
…leguidist
  • Loading branch information
Brian Akpa committed Jun 27, 2019
1 parent a5b33d1 commit cf78e34
Show file tree
Hide file tree
Showing 13 changed files with 1,116 additions and 14 deletions.
5 changes: 5 additions & 0 deletions src/components/FishTankBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,11 @@ const props: any = {
}
export default Vue.extend({
render(createElement){
return createElement(
(this as any).tagElement, (this as any).boxProps, this.$slots.default
)
},
name:'FishTankBox',
mixins:[
boxMixin
Expand Down
5 changes: 5 additions & 0 deletions src/components/FishTankColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ import {
import Vue from 'vue'
export default Vue.extend({
name:"FishTankColumn",
render(createElement) {
return createElement(
(this as any).tagElement, (this as any).boxProps, this.$slots.default
)
},
mixins:[
boxMixin
],
Expand Down
5 changes: 5 additions & 0 deletions src/components/FishTankContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ import {
import Vue from 'vue'
export default Vue.extend({
render(createElement) {
return createElement(
(this as any).tagElement, (this as any).boxProps, this.$slots.default
)
},
name:"FishTankContainer",
mixins:[
boxMixin
Expand Down
2 changes: 1 addition & 1 deletion src/components/FishTankModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@

<script lang="ts">
import Vue from 'vue'
import Detachable from '@/util/detachable'
import Detachable from '../util/detachable'
import { Close24 } from '@fishtank/icons-vue'
let overlayTimeout: null | number = null
Expand Down
2 changes: 1 addition & 1 deletion src/components/FishTankModalV2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

<script lang="ts">
import Vue from 'vue'
import Detachable from '@/util/detachable'
import Detachable from '../util/detachable'
import { Close24 } from '@fishtank/icons-vue'
let overlayTimeout: null | number = null
Expand Down
2 changes: 1 addition & 1 deletion src/components/FishTankTag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import Vue from "vue"
import { CloseSml24 } from '@fishtank/icons-vue'
import { a11y } from "../util/mixins"
import { default as FishTankText } from '@/components/FishTankText.vue'
import { default as FishTankText } from './FishTankText.vue'
export default Vue.extend({
name:"FishTankTag",
Expand Down
Loading

0 comments on commit cf78e34

Please sign in to comment.