web app boilerplate
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
/* exported app */
|
||||
|
||||
let app = {
|
||||
el: '#app',
|
||||
data: {
|
||||
sample: 'Wikipedia translator'
|
||||
},
|
||||
methods: {},
|
||||
'mounted': {},
|
||||
'created': {}
|
||||
};
|
||||
|
||||
window.onload = () => {
|
||||
app = new Vue(app);
|
||||
};
|
||||
Reference in New Issue
Block a user