Components Gallery, Book, Card, CImgText .... continue...
This commit is contained in:
20
src/components/CTitle/CTitle.ts
Normal file
20
src/components/CTitle/CTitle.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import Vue from 'vue'
|
||||
import { Component, Prop } from 'vue-property-decorator'
|
||||
import { GlobalStore, UserStore } from '@store'
|
||||
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { toolsext } from '@src/store/Modules/toolsext'
|
||||
import { Screen } from 'quasar'
|
||||
|
||||
@Component({
|
||||
name: 'CTitle'
|
||||
})
|
||||
export default class CTitle extends Vue {
|
||||
@Prop({ required: false, default: '' }) public imgbackground: string
|
||||
@Prop({ required: false, default: '' }) public imghead: string
|
||||
@Prop({ required: true }) public headtitle: string
|
||||
|
||||
get tools() {
|
||||
return tools
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user