vue-ethiopian-calendar
Version:
A Vue 2 component for Ethiopian (Amete Alem) calendar with Gregorian date conversion
22 lines (15 loc) • 348 B
HTML
<meta charset="utf-8">
<title>EthiopianCalendar demo</title>
<script src="//unpkg.com/vue@2"></script>
<script src="./EthiopianCalendar.umd.js"></script>
<link rel="stylesheet" href="./EthiopianCalendar.css">
<div id="app">
<demo></demo>
</div>
<script>
new Vue({
components: {
demo: EthiopianCalendar
}
}).$mount('#app')
</script>