js-icon

Just icons author(s): Igor Nesterenko

by NesterOne

HTML

<script src="http://localhost:9000/dist/jasper-ui.js"></script>
<link rel="stylesheet" href="http://localhost:9000/themes/default/jasper-ui.css">
<ul>
    <li>
        <jr-icon name="Filter"></jr-icon>
    </li>
    <li>
        <jr-icon name="Undo"></jr-icon>
    </li>
    <li>
        <jr-icon name="Save"></jr-icon>
    </li>
</ul>

<div class="m-Icon m-Icon-Filter jrs"></div>

JavaScript

//To make components work you have to create a view for some area on your page
//In our case we apply view to all document's body

jasper(function(Vue){
    new Vue({ el: "body"});
});