A simple test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="app" class="layout"> | |
<Layout> | |
<Header> | |
<Menu mode="horizontal" theme="dark" active-name="1"> | |
<div class="layout-logo"><h1>Meu Projeto</h1></div> | |
<div class="layout-nav"> | |
<MenuItem name="1"> | |
<router-link to="/"> | |
<Button>Home</Button> |
- Obter uma cópia do Ubuntu em https://www.ubuntu.com/desktop
- Obter uma cópia do USB Creator em https://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/
- Instalar o Ubunto,. selecionado a opção para baixar pacotes
- Vá em Drivers Adicionar e instale os drivers de video
- executar no terminal (ctrl alt t)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title of the document</title> | |
</head> | |
<body> | |
Content of the document...... | |
</body> |
Você pode baixar todas estas fontes em www.fontsquirrel.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The Vue build version to load with the `import` command | |
// (runtime-only or standalone) has been set in webpack.base.conf with an alias. | |
import Vue from 'vue' | |
import App from './App' | |
import router from './router' | |
import Buefy from 'buefy' | |
import 'buefy/lib/buefy.css' | |
Vue.config.productionTip = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="app"> | |
<img src="./assets/logo.png"> | |
<router-view/> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: 'App' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<section id="app" class="section"> | |
<router-view/> | |
</section> | |
</template> | |
<script> | |
export default { | |
name: 'App' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<section> | |
Hello World | |
</section> | |
</template> | |
<script> | |
export default { | |
name: 'HelloWorld', | |
data () { |