xgqfrms

1.0.1 • Public • Published

g_ui

g_ui: An Vue UI Components Framework For Finance Mobile Web App!

usage

# install
$ yarn add g_ui
# OR
$ npm i g_ui
import Vue from "vue";
import GUI from "g_ui";
// G_UI

Vue.use(GUI);
<!-- error -->
<CorpCard
    corpObj=""
/>

<!-- OK -->
<CorpCard
    :corpObj="corpObj"
/>
<CorpCard
    :corpObj="corpObj2"
/>
// events ???

<nice-handsome-button
    :rounded="true"
    color="red"
    size="large">
    My Button
</nice-handsome-button>


<nice-handsome-button
    @click="AutoSkipToPage(`newsinfo/iframe`)"
    :rounded="true"
    color="red"
    size="large">
    click Button 1
</nice-handsome-button>
<!-- dblclick & mobile bug -->
<nice-handsome-button
    @dblclick="AutoSkipToPage(`newsinfo/iframe`)"
    :rounded="true"
    color="red"
    size="large">
    dblclick Button 2
</nice-handsome-button>
<!-- dblclick & components -->
<nice-handsome-button
    @dblclick.native="AutoSkipToPage(`newsinfo/iframe`)"
    :rounded="true"
    color="red"
    size="large">
    dblclick Button 3
</nice-handsome-button>

npm

https://www.npmjs.com/package/g_ui

refs

Package Sidebar

Install

npm i xgqfrms

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

3.63 kB

Total Files

4

Last publish

Collaborators

  • xgqfrms