New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More β†’
Socket
Sign inDemoInstall
Socket

flowko-vue-test

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

flowko-vue-test

πŸ’Œ Write email templates with Vue

0.5.14
unpublished
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
Β 
Created
Source

flowko-vue-test

flowko-vue-test

npm version npm version npm version

Simple way to build email templates in vue.

Features

Setup

πŸ“– Read the documentation

# pnpm
pnpm add -D flowko-vue-test

# npm
npm i -D flowko-vue-test

Basic Usage

πŸ“– Read the documentation

// components/template-email.vue
<template>
  <e-html lang="en">
    <e-text>Hello, {{ user }}!</e-text>
    <e-hr />
    <e-button href="vuejs.org">Visit vue</e-button>
  </e-html>
</template>

<script setup>
  import { EButton, EHr, EHtml, EText } from "flowko-vue-test";
  import { ref } from "vue";

  const user = ref("Dave");
</script>

You can see the full example here

πŸ’» Development

  • Clone this repository
  • Enable Corepack using corepack enable
  • Install dependencies using pnpm install

Contributors

Repo Activity

πŸ“ Annotations

This project is originally written in react (react-email) by:

License

This project is licensed under MIT

Keywords

vue

FAQs

Package last updated on 24 Jul 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts