This commit is contained in:
notnull 2019-05-24 05:36:57 -04:00
commit bcf730e7c4
5 changed files with 5855 additions and 0 deletions

1
_wavevue.org Normal file
View File

@ -0,0 +1 @@
tutorial for this style of vue coding: https://vuejs.org/v2/guide/single-file-components.html

31
index.html Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="/img/abang.png" />
<meta name="viewport" content="width=device-width initial-scale=1.0" />
<title>Anarchy Planet</title>
<!-- development version, includes helpful console warnings -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<!-- development version, includes helpful console warnings -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">{{ message }}</div>
<script defer src="/main.js"></script>
</body>
</html>

5780
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

24
package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "wavevue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"babel-loader": "^8.0.6",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"dependencies": {
"vue": "^2.6.10"
}
}

19
webpack.config.js Normal file
View File

@ -0,0 +1,19 @@
// webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
module: {
rules: [
// ... other rules
{ test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ },
{
test: /\.vue$/,
loader: 'vue-loader',
},
],
},
plugins: [
// make sure to include the plugin!
new VueLoaderPlugin(),
],
}