s11e145 form input binding

This commit is contained in:
Tyrel Souza 2018-04-18 23:36:54 -04:00
parent 0f5f7909bf
commit 00fe3bf120
9 changed files with 7038 additions and 0 deletions

5
s11e143/.babelrc Normal file
View File

@ -0,0 +1,5 @@
{
"presets": [
["es2015", { "modules": false }]
]
}

18
s11e143/README.md Normal file
View File

@ -0,0 +1,18 @@
# vue-cli
> A Vue.js project
## Build Setup
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
```
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).

12
s11e143/index.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vue Forms</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"></head>
<body>
<div id="app">
</div>
<script src="/dist/build.js"></script>
</body>
</html>

6772
s11e143/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

25
s11e143/package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "vue-cli",
"description": "A Vue.js project",
"author": "Maximilian Schwarzmüller <mblacky0@gmail.com>",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"dependencies": {
"bootstrap": "^3.3.7",
"vue": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"vue-loader": "^9.7.0",
"webpack": "2.1.0-beta.25",
"webpack-dev-server": "2.1.0-beta.0"
}
}

135
s11e143/src/App.vue Normal file
View File

@ -0,0 +1,135 @@
<template>
<div class="container">
<form>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
<h1>File a Complaint</h1>
<hr>
<div class="form-group">
<label for="email">Mail</label>
<input
v-model="email"
type="text"
id="email"
class="form-control">
</div>
<div class="form-group">
<label for="password">Password</label>
<input
type="password"
id="password"
class="form-control">
</div>
<div class="form-group">
<label for="age">Age</label>
<input
type="number"
id="age"
class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 form-group">
<label for="message">Message</label><br>
<!-- Interpolation between <textarea>{{ test }}</textarea> doesn't work!-->
<textarea
id="message"
rows="5"
class="form-control"></textarea>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
<div class="form-group">
<label for="sendmail">
<input
type="checkbox"
id="sendmail"
value="SendMail"> Send Mail
</label>
<label for="sendInfomail">
<input
type="checkbox"
id="sendInfomail"
value="SendInfoMail"> Send Infomail
</label>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 form-group">
<label for="male">
<input
type="radio"
id="male"
value="Male"> Male
</label>
<label for="female">
<input
type="radio"
id="female"
value="Female"> Female
</label>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 from-group">
<label for="priority">Priority</label>
<select
id="priority"
class="form-control">
<option></option>
</select>
</div>
</div>
<hr>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
<button
class="btn btn-primary">Submit!
</button>
</div>
</div>
</form>
<hr>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3">
<div class="panel panel-default">
<div class="panel-heading">
<h4>Your Data</h4>
</div>
<div class="panel-body">
<p>Mail: {{email}}</p>
<p>Password:</p>
<p>Age:</p>
<p>Message: </p>
<p><strong>Send Mail?</strong></p>
<ul>
<li></li>
</ul>
<p>Gender:</p>
<p>Priority:</p>
<p>Switched:</p>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
data(){
return {
email: '',
};
}
}
</script>
<style>
</style>

BIN
s11e143/src/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

7
s11e143/src/main.js Normal file
View File

@ -0,0 +1,7 @@
import Vue from 'vue'
import App from './App.vue'
new Vue({
el: '#app',
render: h => h(App)
})

64
s11e143/webpack.config.js Normal file
View File

@ -0,0 +1,64 @@
var path = require('path')
var webpack = require('webpack')
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'build.js'
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue',
options: {
// vue-loader options go here
}
},
{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file',
options: {
name: '[name].[ext]?[hash]'
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue'
}
},
devServer: {
historyApiFallback: true,
noInfo: true
},
devtool: '#eval-source-map'
}
if (process.env.NODE_ENV === 'production') {
module.exports.devtool = '#source-map'
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
})
])
}