0.1.0 • Published 3 years ago
web-components-mailsignature v0.1.0
web.components.mailSignature
Prod
1. Install and register custom component
Use npm to install package:
npm install web.components.mailSignature2. Register
import {register} from './lib/index.js'
// to registre custom component
register()Or manually
1. Copy dist directory in docs/dist/ to your project and import
2. Register
<script type="module" src="./your-script.js"></script>and register component in your script js file
// to registre custom component
register()2. use directly in your html app
<mail-signature></mail-signature>Dev
To custom project
npm installCompile and Hot-Reload for Development
npm run devType-Check, Compile and Minify for Production
npm run build