This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/assets/js/app.js

10 lines
174 B
JavaScript
Raw Normal View History

2018-11-22 13:26:18 +00:00
window.hljs = require('highlightjs')
window.Vue = require('vue')
2017-08-06 18:01:22 +00:00
2018-09-04 23:30:36 +00:00
import Navbar from './components/Navbar';
2017-08-06 18:01:22 +00:00
2018-09-04 23:30:36 +00:00
const app = new Vue({
el: '#app',
components: { Navbar },
})