mirror of
https://github.com/aljazceru/nostr-watch.git
synced 2025-12-17 05:24:19 +01:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import "./styles/main.scss"
|
|
import directives from "./directives/"
|
|
|
|
const app = createApp(App)
|
|
|
|
directives(app);
|
|
|
|
app.mount('#app')
|