playwright/tests/components/ct-vue2-cli/src/main.js
sand4rt 704ff5fda3
core(ct): align styling (#17573)
aligned the global styling of the ct test projects and added dark mode
2022-09-28 10:54:24 +02:00

10 lines
165 B
JavaScript

import Vue from 'vue'
import App from './App.vue'
import './assets/index.css';
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')