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
<div class="col-sm-12"> | |
<div class="form-group"> | |
<label for="value">Meus números</label> | |
<select class="input" id="my_number" required="true"> | |
<option value="(11) 9555-25181" data-operator="2">Meu Oi</option> | |
<option value="(11) 9855-25323" data-operator="1">Meu TIM</option> | |
<option value="(11) 9499-57797" data-operator="1">Meu numero da tim</option> | |
</select> | |
</div> | |
</div> |
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
import Vue from 'vue' | |
import Router from 'vue-router' | |
import Dashboard from './pages/Dashboard.vue' | |
import Login from './pages/Login.vue' | |
Vue.use(Router) | |
export default new Router({ | |
routes: [{ | |
path: '/', |
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"> | |
<h3>Dashboard</h3> | |
</div> | |
</template> | |
<script> | |
// import VueExtendLayouts from "vue-extend-layout"; | |
export default { |