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);
|
||||
};
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
/* exported utils */
|
||||
|
||||
const utils = {
|
||||
get: (url, proxy = false) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
const xhr = new XMLHttpRequest();
|
||||
if (proxy) {
|
||||
const http = (window.location.protocol === 'http:' ? 'http:' : 'https:');
|
||||
url = http + '//cors-anywhere.herokuapp.com/' + url;
|
||||
}
|
||||
xhr.open("GET", url);
|
||||
xhr.onload = () => resolve(xhr.responseText);
|
||||
xhr.onerror = () => reject(xhr.statusText);
|
||||
xhr.send();
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user