forked from geolba/tethys.frontend
- add search models - add opensans font - add bulma css framework - add axios, rxjs, vue-property-decorator - npm updates
32 lines
1.2 KiB
Vue
32 lines
1.2 KiB
Vue
<template>
|
|
<div class="hello">
|
|
<h1>{{ msg }}</h1>
|
|
<p>
|
|
For a guide and recipes on how to configure / customize this project,<br />
|
|
check out the
|
|
<a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
|
|
</p>
|
|
<h3>Installed CLI Plugins</h3>
|
|
<ul>
|
|
<li>
|
|
<a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel" target="_blank" rel="noopener">babel</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-typescript" target="_blank" rel="noopener">typescript</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint" target="_blank" rel="noopener">eslint</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import HelloWorld from "./HelloWorld";
|
|
export default HelloWorld;
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped lang="scss">
|
|
@import "./HelloWorld.scss"; // $text-primary would be defined in that file
|
|
</style>
|