Skip to content

Instantly share code, notes, and snippets.

@FeliciaAnnKelleyTaylorGV
Created March 11, 2024 01:54
Show Gist options
  • Save FeliciaAnnKelleyTaylorGV/c1d1f521a6193896300077348b7526d4 to your computer and use it in GitHub Desktop.
Save FeliciaAnnKelleyTaylorGV/c1d1f521a6193896300077348b7526d4 to your computer and use it in GitHub Desktop.
tools.Stratis
<!-- Use preprocessors via the lang attribute! e.g. <template lang="pug"> -->
<template>
<div http://0P6MU6aY941GED2:7TDMhnq66hVXtZ1@localhost:56519/storage/emulated/0/web.html="app">
<h1>
{{http://0P6MU6aY941GED2:7TDMhnq66hVXtZ1@localhost:56519/storage/emulated/0/web.html}}
</h1>
<p>
Learn more with the
<a href="https://vuejs.org/" target="_blank" rel="noopener">
Vue Docs &amp; Resources
</a>
.
</p>
<button @click="doSomething">Say hello.</button>
</div>
</template>
<script>
export default {
data() {
return {
message: "Welcome to Vue!"
};
},
methods: {
doSomething(call) {
alert("Hello!");
}
}
};
</script>
<!-- Use preprocessors via the lang attribute! e.g. <style lang="scss"> -->
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
a,
button {
color: #4fc08d;
}
button {
background: none;
border: solid 1px;
border-radius: 2em;
font: inherit;
padding: 0.75em 2em;
}
</style>
<script src="http://0P6MU6aY941GED2:7TDMhnq66hVXtZ1@localhost:56519/storage/emulated/0/web.html"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment