fakegm
v1.0.52
Published
Fake Game Manager Web Client Lib
Downloads
23
Readme
FakeGM
Install
npm install -s fakegm
Usage
main.js
import { createApp } from 'vue' // must in first line
import 'element-plus/dist/index.css'
import FakeGM from 'fakegm'
import App from './App.vue'
// other imports
const app = createApp(App)
app.use(FakeGM)
app.mount('#app')
App.vue
<script lang="ts" setup>
// no imports required
</script>
<template>
<FgHelloWorld msg="FakeGM Yes!!!">
</template>
<style scoped>
</style>
Issues
FgHelloWorld
<template>
<FgHelloWorld msg="FakeGM Yes!!!" />
</template>
Inputs
FgDateInput
<script lang="ts" setup>
const dateInputOnValueChange=(pos:number,v:string)=>{
console.log(`FgDateInput.onValueChange(${pos},${v})`)
}
</script>
<template>
<FgDateInput :pos="1" @onValueChange="dateInputOnValueChange"/>
</template>
- FgDateRangeInput
- FgDatetimeInput
- FgGameMultipleSelector
- FgGameSingleSelector
- FgNumberInput
- FgPasswordInput
- FgTextInput
Panels
- FgPipelineExecutorPanel
- FgPipelineTablePanel
Dashboards
- FgLoginDashboard
- FgPipelineDashboard
Build
npm run build-lib
npm run tsc
npm login
npm publish