Skip to content

Instantly share code, notes, and snippets.

@bradlis7
bradlis7 / vue-ellipsis-example.html
Last active September 6, 2017 22:06
Vue ellipsis component
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.min.js"></script>
</head>
<body>
<ul id='Vue'>
<li><span is='ellipsis' length='25' text='This should collapse since it has more than 25 characters.'></span></li>
<li><span is='ellipsis' length='50' text='This should remain expanded.'></span></li>
</ul>
<script>