1.3.1 β€’ Published 3 years ago

vue-creator-preview v1.3.1

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

vue-creator-preview

npm version install size npm downloads

Introduction

A preview component of the creator with more information on hover. Checkout the Demo here.

Installation

Install using npm

# install it via npm
npm install vue-creator-preview --save

Install using yarn

# install it via yarn
yarn add vue-creator-preview

Usage

<template>
  <div class="Footer">
    <span>
      Crafted for people who love to keep things simple.
    </span>
    <span>
      A product by
      <a href="https://gobienan.com" target="_blank">
        <creator-preview
          :avatar="avatar"
          :name="name"
          :description="description"
          :content="content"
        />
      </a>
    </span>
  </div>
</template>

<script>
import CreatorPreview from 'vue-creator-preview.vue';
export default {
  components: {
      CreatorPreview
  },
  data() {
    return {
      avatar: 'https://pbs.twimg.com/profile_images/1375758751450415104/hV9bKmvf_400x400.jpg',
      name: `Gobie Nanthakumar`,
      description: `Engineer with a passion for UI design`,
      content: `Hey, I am Gobie πŸ‘‹<br/>
If you don’t know me, I love to create products with great UI ;)<br/><br/>
Click on the link to visit my website πŸ‘‡πŸΎ`,
    };
  },
};
</script>

Options

Below are the options you can pass to the preview

OptionTypeDefaultDescription
avatarString'https://source.boringavatars.com/beam/90/'URL of the avatar image you want to get displayed
nameString / HTML'Creator'Name of the Creator
descriptionString / HTML'Developer, Founder'Short description displayed below the name
contentString / HTML'''Content with additional information about the creator'
modeString'light''switch between dark and light mode'

License

MIT

1.2.0

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago