Skip to content

Instantly share code, notes, and snippets.

@hyt48
hyt48 / Code.gs
Last active December 21, 2019 05:31
gas-vue-todo-webapp
function doGet() {
var htmlOutput = HtmlService.createTemplateFromFile('index').evaluate();
htmlOutput
.setTitle('GAS + Vue.js App')
.addMetaTag('viewport', 'width=device-width, initial-scale=1');
return htmlOutput;
}