1.0.6 • Published 3 years ago

vue-flex-components v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Vue-Flex-Components

Vue-flex-components is a vue library that consist of various vue custom components such as LoadingContainer, InnerLoadingContainer, FloatingActionButton

Installation

Via npm

npm install vue-flex-components

Usuage

import { FlexLoading } from "vue-flex-components";
export default defineComponent({
  components: {
    FlexLoading,
  },
  data() {
    return {
      visible: true,
    };
  },
});

Example

<div>
    <flex-loading
      label="Pls Wait while we process ur transaction ..."
      labelColor="teal"
      labelSize="1.1rem"
      labelWeight="bold"
      bgColor="#80808014"
      iconColor="red"
      icon="fas fa-spinner"
      iconSize="50px"
      :showing="visible"
      speed="6s"
      transition="4s"
    >
      Anything goes inside here .....................
    </flex-loading>

    <div
      @click="visible = !visible"
      style="position: absolute; z-index: 500000000; top: 0px"
    >
      Toggle Now
    </div>

License

MIT

Free Software, Hell Yeah!

1.0.2

3 years ago

1.0.1

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.0

3 years ago

0.0.1

3 years ago