Added feather icons to the sidebar

This commit is contained in:
booploops 2022-01-06 18:55:05 -08:00
parent cba4a71b87
commit e58a8b166c
14 changed files with 85 additions and 14 deletions

View file

@ -0,0 +1,16 @@
<script type="text/x-template" id="hello-world">
<div class="content-inner">
</div>
</script>
<script>
Vue.component('library-songs', {
template: '#library-songs',
methods: {
sayHello: function () {
alert('Hello world!');
}
}
});
</script>