mirror of
https://github.com/heyman/heynote.git
synced 2024-11-22 07:54:11 +01:00
14 lines
336 B
JavaScript
14 lines
336 B
JavaScript
|
import '../src/css/application.sass'
|
||
|
|
||
|
import { createApp } from 'vue'
|
||
|
import App from '../src/components/App.vue'
|
||
|
import { loadCurrencies } from '../src/currency'
|
||
|
|
||
|
const app = createApp(App)
|
||
|
app.mount('#app')
|
||
|
//console.log("test:", app.hej.test)
|
||
|
|
||
|
// load math.js currencies
|
||
|
loadCurrencies()
|
||
|
setInterval(loadCurrencies, 1000 * 3600 * 4)
|