@alpine-collective/toolkit-truncate
v1.0.2
Published
Truncate a string in Alpine.js.
Downloads
196
Readme
$truncate
A magic helper to truncate a string in Alpine.js.
Usage
Coming soon
Installation
CDN
Include the following <script>
tag in the <head>
of your document, before Alpine:
<script src="https://unpkg.com/@alpine-collective/[email protected]/dist/cdn.min.js" defer></script>
or
<script src="https://cdn.jsdelivr.net/npm/@alpine-collective/[email protected]/dist/cdn.min.js" defer></script>
NPM
If you would like to bundle the plugin yourself, install it via NPM:
npm install @alpine-collective/toolkit-truncate --save-dev
You can then register the plugin with Alpine:
import Alpine from 'alpinejs'
import Truncate from '@alpine-collective/toolkit-truncate'
Alpine.plugin(Truncate)
Alpine.start()