You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
293 B
JavaScript

import styles from './styles/index.css';
import Vue from 'vue';
window.app = new Vue({
el: '#app',
data:{
message: 'hello world !'
}
});
window.app2 = new Vue({
el: '#app2',
data:{
message: 'you loaded this page' + new Date().toLocaleString()
}
});