ButtonTrigger

  • Файл: app/components/base/ButtonTriger.vue

Быстрый старт

<template>
  <ButtonTrigger 
    type="form"
    text="Открыть форму"
    content="write_us"
  />
</template>

API

Props

PropTypeПо умолчанию
type'form', 'link', 'page', 'phone'''
textstring''
contentstring''

Остальные пропсы соответствуют пропсам компонента UIButton

Варианты

Телефон

<template>
  <ButtonTrigger 
    type="phone"
    text="Позвонить"
    content="+79112223344"
  />
</template>

Ссылка

<template>
  <ButtonTrigger 
    type="page"
    text="Документация"
    content="/docs/"
  />
</template>

Внешняя ссылка

<template>
  <ButtonTrigger 
    type="link"
    text="CoffeeStudio"
    content="https://coffeestudio.ru"
  />
</template>