This commit is contained in:
2026-02-06 18:34:35 +08:00
commit f7f4c94c00
3285 changed files with 563208 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
<template>
<JqxGrid :width="getWidth" :source="dataAdapter" :columns="columns"
:pageable="true" :autoheight="true" :sortable="true"
:altrows="true" :enabletooltip="true" :editable="true"
:selectionmode="'multiplecellsadvanced'" :columngroups="columngroups">
</JqxGrid>
</template>
<script>
import JqxGrid from "jqwidgets-scripts/jqwidgets-vue/vue_jqxgrid.vue";
export default {
components: {
JqxGrid
},
data: function () {
return {
getWidth: '90%',
dataAdapter: new jqx.dataAdapter(this.source),
columns: [
{ text: 'Product Name', columngroup: 'ProductDetails', datafield: 'ProductName', width: 250 },
{ text: 'Quantity per Unit', columngroup: 'ProductDetails', datafield: 'QuantityPerUnit', cellsalign: 'right', align: 'right' },
{ text: 'Unit Price', columngroup: 'ProductDetails', datafield: 'UnitPrice', align: 'right', cellsalign: 'right', cellsformat: 'c2' },
{ text: 'Units In Stock', datafield: 'UnitsInStock', cellsalign: 'right', cellsrenderer: this.cellsrenderer, width: 100 },
{ text: 'Discontinued', columntype: 'checkbox', datafield: 'Discontinued', align: 'center' }
],
columngroups: [
{ text: 'Product Details', align: 'center', name: 'ProductDetails' }
]
}
},
beforeCreate: function () {
this.source = {
datatype: 'xml',
datafields: [
{ name: 'ProductName', type: 'string' },
{ name: 'QuantityPerUnit', type: 'int' },
{ name: 'UnitPrice', type: 'float' },
{ name: 'UnitsInStock', type: 'float' },
{ name: 'Discontinued', type: 'bool' }
],
root: 'Products',
record: 'Product',
id: 'ProductID',
url: 'products.xml'
};
},
methods: {
cellsrenderer: function (row, columnsfield, value, defaulthtml, columnproperties, rowdata) {
if (value < 20) {
return '<span style="margin: 4px; float: ' + columnproperties.cellsalign + '; color: #ff0000;">' + value + '</span>';
}
else {
return '<span style="margin: 4px; float: ' + columnproperties.cellsalign + '; color: #008000;">' + value + '</span>';
}
}
}
}
</script>
<style>
</style>

View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>jQWidgets Vue Example</title>
<link rel="stylesheet" href="node_modules/jqwidgets-scripts/jqwidgets/styles/jqx.base.css" type="text/css" />
<script src="https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/generatedata.js"></script> </head>
<body>
<div id="app"></div>
<script src="dist/main.bundle.js"></script>
</body>
</html>

View File

@@ -0,0 +1,10 @@
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
new Vue({
el: '#app',
components: { App },
template: '<App/>'
})

View File

@@ -0,0 +1,33 @@
{
"name": "jQWidgets_Vue_Demo",
"version": "1.0.0",
"description": "Vue.js Demos Build Project",
"author": "www.jqwidgets.com <sales@jqwidgets.com>",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "npm run build"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"jqwidgets-scripts": "~6.1.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue": "^2.5.2",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
}
}

View File

@@ -0,0 +1,850 @@
<?xml version="1.0" encoding="utf-8" ?>
<Products>
<Product ProductID="1">
<ProductName>Chai</ProductName>
<SupplierID>1</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>10 boxes x 20 bags</QuantityPerUnit>
<UnitPrice>18.0000</UnitPrice>
<UnitsInStock>39</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>10</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="2">
<ProductName>Chang</ProductName>
<SupplierID>1</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>24 - 12 oz bottles</QuantityPerUnit>
<UnitPrice>19.0000</UnitPrice>
<UnitsInStock>17</UnitsInStock>
<UnitsOnOrder>40</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="3">
<ProductName>Aniseed Syrup</ProductName>
<SupplierID>1</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>12 - 550 ml bottles</QuantityPerUnit>
<UnitPrice>10.0000</UnitPrice>
<UnitsInStock>13</UnitsInStock>
<UnitsOnOrder>70</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="4">
<ProductName>Chef Anton's Cajun Seasoning</ProductName>
<SupplierID>2</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>48 - 6 oz jars</QuantityPerUnit>
<UnitPrice>22.0000</UnitPrice>
<UnitsInStock>53</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="5">
<ProductName>Chef Anton's Gumbo Mix</ProductName>
<SupplierID>2</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>36 boxes</QuantityPerUnit>
<UnitPrice>21.3500</UnitPrice>
<UnitsInStock>0</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>true</Discontinued>
</Product>
<Product ProductID="6">
<ProductName>Grandma's Boysenberry Spread</ProductName>
<SupplierID>3</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>12 - 8 oz jars</QuantityPerUnit>
<UnitPrice>25.0000</UnitPrice>
<UnitsInStock>120</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="7">
<ProductName>Uncle Bob's Organic Dried Pears</ProductName>
<SupplierID>3</SupplierID>
<CategoryID>7</CategoryID>
<QuantityPerUnit>12 - 1 lb pkgs.</QuantityPerUnit>
<UnitPrice>30.0000</UnitPrice>
<UnitsInStock>15</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>10</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="8">
<ProductName>Northwoods Cranberry Sauce</ProductName>
<SupplierID>3</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>12 - 12 oz jars</QuantityPerUnit>
<UnitPrice>40.0000</UnitPrice>
<UnitsInStock>6</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="9">
<ProductName>Mishi Kobe Niku</ProductName>
<SupplierID>4</SupplierID>
<CategoryID>6</CategoryID>
<QuantityPerUnit>18 - 500 g pkgs.</QuantityPerUnit>
<UnitPrice>97.0000</UnitPrice>
<UnitsInStock>29</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>true</Discontinued>
</Product>
<Product ProductID="10">
<ProductName>Ikura</ProductName>
<SupplierID>4</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>12 - 200 ml jars</QuantityPerUnit>
<UnitPrice>31.0000</UnitPrice>
<UnitsInStock>31</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="11">
<ProductName>Queso Cabrales</ProductName>
<SupplierID>5</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>1 kg pkg.</QuantityPerUnit>
<UnitPrice>21.0000</UnitPrice>
<UnitsInStock>22</UnitsInStock>
<UnitsOnOrder>30</UnitsOnOrder>
<ReorderLevel>30</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="12">
<ProductName>Queso Manchego La Pastora</ProductName>
<SupplierID>5</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>10 - 500 g pkgs.</QuantityPerUnit>
<UnitPrice>38.0000</UnitPrice>
<UnitsInStock>86</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="13">
<ProductName>Konbu</ProductName>
<SupplierID>6</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>2 kg box</QuantityPerUnit>
<UnitPrice>6.0000</UnitPrice>
<UnitsInStock>24</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>5</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="14">
<ProductName>Tofu</ProductName>
<SupplierID>6</SupplierID>
<CategoryID>7</CategoryID>
<QuantityPerUnit>40 - 100 g pkgs.</QuantityPerUnit>
<UnitPrice>23.2500</UnitPrice>
<UnitsInStock>35</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="15">
<ProductName>Genen Shouyu</ProductName>
<SupplierID>6</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>24 - 250 ml bottles</QuantityPerUnit>
<UnitPrice>15.5000</UnitPrice>
<UnitsInStock>39</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>5</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="16">
<ProductName>Pavlova</ProductName>
<SupplierID>7</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>32 - 500 g boxes</QuantityPerUnit>
<UnitPrice>17.4500</UnitPrice>
<UnitsInStock>29</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>10</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="17">
<ProductName>Alice Mutton</ProductName>
<SupplierID>7</SupplierID>
<CategoryID>6</CategoryID>
<QuantityPerUnit>20 - 1 kg tins</QuantityPerUnit>
<UnitPrice>39.0000</UnitPrice>
<UnitsInStock>0</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>true</Discontinued>
</Product>
<Product ProductID="18">
<ProductName>Carnarvon Tigers</ProductName>
<SupplierID>7</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>16 kg pkg.</QuantityPerUnit>
<UnitPrice>62.5000</UnitPrice>
<UnitsInStock>42</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="19">
<ProductName>Teatime Chocolate Biscuits</ProductName>
<SupplierID>8</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>10 boxes x 12 pieces</QuantityPerUnit>
<UnitPrice>9.2000</UnitPrice>
<UnitsInStock>25</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>5</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="20">
<ProductName>Sir Rodney's Marmalade</ProductName>
<SupplierID>8</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>30 gift boxes</QuantityPerUnit>
<UnitPrice>81.0000</UnitPrice>
<UnitsInStock>40</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="21">
<ProductName>Sir Rodney's Scones</ProductName>
<SupplierID>8</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>24 pkgs. x 4 pieces</QuantityPerUnit>
<UnitPrice>10.0000</UnitPrice>
<UnitsInStock>3</UnitsInStock>
<UnitsOnOrder>40</UnitsOnOrder>
<ReorderLevel>5</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="22">
<ProductName>Gustaf's Knäckebröd</ProductName>
<SupplierID>9</SupplierID>
<CategoryID>5</CategoryID>
<QuantityPerUnit>24 - 500 g pkgs.</QuantityPerUnit>
<UnitPrice>21.0000</UnitPrice>
<UnitsInStock>104</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="23">
<ProductName>Tunnbröd</ProductName>
<SupplierID>9</SupplierID>
<CategoryID>5</CategoryID>
<QuantityPerUnit>12 - 250 g pkgs.</QuantityPerUnit>
<UnitPrice>9.0000</UnitPrice>
<UnitsInStock>61</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="24">
<ProductName>Guaraná Fantástica</ProductName>
<SupplierID>10</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>12 - 355 ml cans</QuantityPerUnit>
<UnitPrice>4.5000</UnitPrice>
<UnitsInStock>20</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>true</Discontinued>
</Product>
<Product ProductID="25">
<ProductName>NuNuCa Nuß-Nougat-Creme</ProductName>
<SupplierID>11</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>20 - 450 g glasses</QuantityPerUnit>
<UnitPrice>14.0000</UnitPrice>
<UnitsInStock>76</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>30</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="26">
<ProductName>Gumbär Gummibärchen</ProductName>
<SupplierID>11</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>100 - 250 g bags</QuantityPerUnit>
<UnitPrice>31.2300</UnitPrice>
<UnitsInStock>15</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="27">
<ProductName>Schoggi Schokolade</ProductName>
<SupplierID>11</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>100 - 100 g pieces</QuantityPerUnit>
<UnitPrice>43.9000</UnitPrice>
<UnitsInStock>49</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>30</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="28">
<ProductName>Rössle Sauerkraut</ProductName>
<SupplierID>12</SupplierID>
<CategoryID>7</CategoryID>
<QuantityPerUnit>25 - 825 g cans</QuantityPerUnit>
<UnitPrice>45.6000</UnitPrice>
<UnitsInStock>26</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>true</Discontinued>
</Product>
<Product ProductID="29">
<ProductName>Thüringer Rostbratwurst</ProductName>
<SupplierID>12</SupplierID>
<CategoryID>6</CategoryID>
<QuantityPerUnit>50 bags x 30 sausgs.</QuantityPerUnit>
<UnitPrice>123.7900</UnitPrice>
<UnitsInStock>0</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>true</Discontinued>
</Product>
<Product ProductID="30">
<ProductName>Nord-Ost Matjeshering</ProductName>
<SupplierID>13</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>10 - 200 g glasses</QuantityPerUnit>
<UnitPrice>25.8900</UnitPrice>
<UnitsInStock>10</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="31">
<ProductName>Gorgonzola Telino</ProductName>
<SupplierID>14</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>12 - 100 g pkgs</QuantityPerUnit>
<UnitPrice>12.5000</UnitPrice>
<UnitsInStock>0</UnitsInStock>
<UnitsOnOrder>70</UnitsOnOrder>
<ReorderLevel>20</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="32">
<ProductName>Mascarpone Fabioli</ProductName>
<SupplierID>14</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>24 - 200 g pkgs.</QuantityPerUnit>
<UnitPrice>32.0000</UnitPrice>
<UnitsInStock>9</UnitsInStock>
<UnitsOnOrder>40</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="33">
<ProductName>Geitost</ProductName>
<SupplierID>15</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>500 g</QuantityPerUnit>
<UnitPrice>2.5000</UnitPrice>
<UnitsInStock>112</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>20</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="34">
<ProductName>Sasquatch Ale</ProductName>
<SupplierID>16</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>24 - 12 oz bottles</QuantityPerUnit>
<UnitPrice>14.0000</UnitPrice>
<UnitsInStock>111</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="35">
<ProductName>Steeleye Stout</ProductName>
<SupplierID>16</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>24 - 12 oz bottles</QuantityPerUnit>
<UnitPrice>18.0000</UnitPrice>
<UnitsInStock>20</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="36">
<ProductName>Inlagd Sill</ProductName>
<SupplierID>17</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>24 - 250 g jars</QuantityPerUnit>
<UnitPrice>19.0000</UnitPrice>
<UnitsInStock>112</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>20</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="37">
<ProductName>Gravad lax</ProductName>
<SupplierID>17</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>12 - 500 g pkgs.</QuantityPerUnit>
<UnitPrice>26.0000</UnitPrice>
<UnitsInStock>11</UnitsInStock>
<UnitsOnOrder>50</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="38">
<ProductName>Côte de Blaye</ProductName>
<SupplierID>18</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>12 - 75 cl bottles</QuantityPerUnit>
<UnitPrice>263.5000</UnitPrice>
<UnitsInStock>17</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="39">
<ProductName>Chartreuse verte</ProductName>
<SupplierID>18</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>750 cc per bottle</QuantityPerUnit>
<UnitPrice>18.0000</UnitPrice>
<UnitsInStock>69</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>5</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="40">
<ProductName>Boston Crab Meat</ProductName>
<SupplierID>19</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>24 - 4 oz tins</QuantityPerUnit>
<UnitPrice>18.4000</UnitPrice>
<UnitsInStock>123</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>30</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="41">
<ProductName>Jack's New England Clam Chowder</ProductName>
<SupplierID>19</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>12 - 12 oz cans</QuantityPerUnit>
<UnitPrice>9.6500</UnitPrice>
<UnitsInStock>85</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>10</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="42">
<ProductName>Singaporean Hokkien Fried Mee</ProductName>
<SupplierID>20</SupplierID>
<CategoryID>5</CategoryID>
<QuantityPerUnit>32 - 1 kg pkgs.</QuantityPerUnit>
<UnitPrice>14.0000</UnitPrice>
<UnitsInStock>26</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>true</Discontinued>
</Product>
<Product ProductID="43">
<ProductName>Ipoh Coffee</ProductName>
<SupplierID>20</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>16 - 500 g tins</QuantityPerUnit>
<UnitPrice>46.0000</UnitPrice>
<UnitsInStock>17</UnitsInStock>
<UnitsOnOrder>10</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="44">
<ProductName>Gula Malacca</ProductName>
<SupplierID>20</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>20 - 2 kg bags</QuantityPerUnit>
<UnitPrice>19.4500</UnitPrice>
<UnitsInStock>27</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="45">
<ProductName>Rogede sild</ProductName>
<SupplierID>21</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>1k pkg.</QuantityPerUnit>
<UnitPrice>9.5000</UnitPrice>
<UnitsInStock>5</UnitsInStock>
<UnitsOnOrder>70</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="46">
<ProductName>Spegesild</ProductName>
<SupplierID>21</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>4 - 450 g glasses</QuantityPerUnit>
<UnitPrice>12.0000</UnitPrice>
<UnitsInStock>95</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="47">
<ProductName>Zaanse koeken</ProductName>
<SupplierID>22</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>10 - 4 oz boxes</QuantityPerUnit>
<UnitPrice>9.5000</UnitPrice>
<UnitsInStock>36</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="48">
<ProductName>Chocolade</ProductName>
<SupplierID>22</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>10 pkgs.</QuantityPerUnit>
<UnitPrice>12.7500</UnitPrice>
<UnitsInStock>15</UnitsInStock>
<UnitsOnOrder>70</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="49">
<ProductName>Maxilaku</ProductName>
<SupplierID>23</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>24 - 50 g pkgs.</QuantityPerUnit>
<UnitPrice>20.0000</UnitPrice>
<UnitsInStock>10</UnitsInStock>
<UnitsOnOrder>60</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="50">
<ProductName>Valkoinen suklaa</ProductName>
<SupplierID>23</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>12 - 100 g bars</QuantityPerUnit>
<UnitPrice>16.2500</UnitPrice>
<UnitsInStock>65</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>30</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="51">
<ProductName>Manjimup Dried Apples</ProductName>
<SupplierID>24</SupplierID>
<CategoryID>7</CategoryID>
<QuantityPerUnit>50 - 300 g pkgs.</QuantityPerUnit>
<UnitPrice>53.0000</UnitPrice>
<UnitsInStock>20</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>10</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="52">
<ProductName>Filo Mix</ProductName>
<SupplierID>24</SupplierID>
<CategoryID>5</CategoryID>
<QuantityPerUnit>16 - 2 kg boxes</QuantityPerUnit>
<UnitPrice>7.0000</UnitPrice>
<UnitsInStock>38</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="53">
<ProductName>Perth Pasties</ProductName>
<SupplierID>24</SupplierID>
<CategoryID>6</CategoryID>
<QuantityPerUnit>48 pieces</QuantityPerUnit>
<UnitPrice>32.8000</UnitPrice>
<UnitsInStock>0</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>true</Discontinued>
</Product>
<Product ProductID="54">
<ProductName>Tourtière</ProductName>
<SupplierID>25</SupplierID>
<CategoryID>6</CategoryID>
<QuantityPerUnit>16 pies</QuantityPerUnit>
<UnitPrice>7.4500</UnitPrice>
<UnitsInStock>21</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>10</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="55">
<ProductName>Pâté chinois</ProductName>
<SupplierID>25</SupplierID>
<CategoryID>6</CategoryID>
<QuantityPerUnit>24 boxes x 2 pies</QuantityPerUnit>
<UnitPrice>24.0000</UnitPrice>
<UnitsInStock>115</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>20</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="56">
<ProductName>Gnocchi di nonna Alice</ProductName>
<SupplierID>26</SupplierID>
<CategoryID>5</CategoryID>
<QuantityPerUnit>24 - 250 g pkgs.</QuantityPerUnit>
<UnitPrice>38.0000</UnitPrice>
<UnitsInStock>21</UnitsInStock>
<UnitsOnOrder>10</UnitsOnOrder>
<ReorderLevel>30</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="57">
<ProductName>Ravioli Angelo</ProductName>
<SupplierID>26</SupplierID>
<CategoryID>5</CategoryID>
<QuantityPerUnit>24 - 250 g pkgs.</QuantityPerUnit>
<UnitPrice>19.5000</UnitPrice>
<UnitsInStock>36</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>20</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="58">
<ProductName>Escargots de Bourgogne</ProductName>
<SupplierID>27</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>24 pieces</QuantityPerUnit>
<UnitPrice>13.2500</UnitPrice>
<UnitsInStock>62</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>20</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="59">
<ProductName>Raclette Courdavault</ProductName>
<SupplierID>28</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>5 kg pkg.</QuantityPerUnit>
<UnitPrice>55.0000</UnitPrice>
<UnitsInStock>79</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="60">
<ProductName>Camembert Pierrot</ProductName>
<SupplierID>28</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>15 - 300 g rounds</QuantityPerUnit>
<UnitPrice>34.0000</UnitPrice>
<UnitsInStock>19</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="61">
<ProductName>Sirop d'érable</ProductName>
<SupplierID>29</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>24 - 500 ml bottles</QuantityPerUnit>
<UnitPrice>28.5000</UnitPrice>
<UnitsInStock>113</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="62">
<ProductName>Tarte au sucre</ProductName>
<SupplierID>29</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>48 pies</QuantityPerUnit>
<UnitPrice>49.3000</UnitPrice>
<UnitsInStock>17</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="63">
<ProductName>Vegie-spread</ProductName>
<SupplierID>7</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>15 - 625 g jars</QuantityPerUnit>
<UnitPrice>43.9000</UnitPrice>
<UnitsInStock>24</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>5</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="64">
<ProductName>Wimmers gute Semmelknödel</ProductName>
<SupplierID>12</SupplierID>
<CategoryID>5</CategoryID>
<QuantityPerUnit>20 bags x 4 pieces</QuantityPerUnit>
<UnitPrice>33.2500</UnitPrice>
<UnitsInStock>22</UnitsInStock>
<UnitsOnOrder>80</UnitsOnOrder>
<ReorderLevel>30</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="65">
<ProductName>Louisiana Fiery Hot Pepper Sauce</ProductName>
<SupplierID>2</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>32 - 8 oz bottles</QuantityPerUnit>
<UnitPrice>21.0500</UnitPrice>
<UnitsInStock>76</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="66">
<ProductName>Louisiana Hot Spiced Okra</ProductName>
<SupplierID>2</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>24 - 8 oz jars</QuantityPerUnit>
<UnitPrice>17.0000</UnitPrice>
<UnitsInStock>4</UnitsInStock>
<UnitsOnOrder>100</UnitsOnOrder>
<ReorderLevel>20</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="67">
<ProductName>Laughing Lumberjack Lager</ProductName>
<SupplierID>16</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>24 - 12 oz bottles</QuantityPerUnit>
<UnitPrice>14.0000</UnitPrice>
<UnitsInStock>52</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>10</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="68">
<ProductName>Scottish Longbreads</ProductName>
<SupplierID>8</SupplierID>
<CategoryID>3</CategoryID>
<QuantityPerUnit>10 boxes x 8 pieces</QuantityPerUnit>
<UnitPrice>12.5000</UnitPrice>
<UnitsInStock>6</UnitsInStock>
<UnitsOnOrder>10</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="69">
<ProductName>Gudbrandsdalsost</ProductName>
<SupplierID>15</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>10 kg pkg.</QuantityPerUnit>
<UnitPrice>36.0000</UnitPrice>
<UnitsInStock>26</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="70">
<ProductName>Outback Lager</ProductName>
<SupplierID>7</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>24 - 355 ml bottles</QuantityPerUnit>
<UnitPrice>15.0000</UnitPrice>
<UnitsInStock>15</UnitsInStock>
<UnitsOnOrder>10</UnitsOnOrder>
<ReorderLevel>30</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="71">
<ProductName>Flotemysost</ProductName>
<SupplierID>15</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>10 - 500 g pkgs.</QuantityPerUnit>
<UnitPrice>21.5000</UnitPrice>
<UnitsInStock>26</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="72">
<ProductName>Mozzarella di Giovanni</ProductName>
<SupplierID>14</SupplierID>
<CategoryID>4</CategoryID>
<QuantityPerUnit>24 - 200 g pkgs.</QuantityPerUnit>
<UnitPrice>34.8000</UnitPrice>
<UnitsInStock>14</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>0</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="73">
<ProductName>Röd Kaviar</ProductName>
<SupplierID>17</SupplierID>
<CategoryID>8</CategoryID>
<QuantityPerUnit>24 - 150 g jars</QuantityPerUnit>
<UnitPrice>15.0000</UnitPrice>
<UnitsInStock>101</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>5</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="74">
<ProductName>Longlife Tofu</ProductName>
<SupplierID>4</SupplierID>
<CategoryID>7</CategoryID>
<QuantityPerUnit>5 kg pkg.</QuantityPerUnit>
<UnitPrice>10.0000</UnitPrice>
<UnitsInStock>4</UnitsInStock>
<UnitsOnOrder>20</UnitsOnOrder>
<ReorderLevel>5</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="75">
<ProductName>Rhönbräu Klosterbier</ProductName>
<SupplierID>12</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>24 - 0.5 l bottles</QuantityPerUnit>
<UnitPrice>7.7500</UnitPrice>
<UnitsInStock>125</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>25</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="76">
<ProductName>Lakkalikööri</ProductName>
<SupplierID>23</SupplierID>
<CategoryID>1</CategoryID>
<QuantityPerUnit>500 ml</QuantityPerUnit>
<UnitPrice>18.0000</UnitPrice>
<UnitsInStock>57</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>20</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
<Product ProductID="77">
<ProductName>Original Frankfurter grüne Soße</ProductName>
<SupplierID>12</SupplierID>
<CategoryID>2</CategoryID>
<QuantityPerUnit>12 boxes</QuantityPerUnit>
<UnitPrice>13.0000</UnitPrice>
<UnitsInStock>32</UnitsInStock>
<UnitsOnOrder>0</UnitsOnOrder>
<ReorderLevel>15</ReorderLevel>
<Discontinued>false</Discontinued>
</Product>
</Products>

View File

@@ -0,0 +1,50 @@
'use strict'
const path = require('path')
const webpack = require('webpack')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
module.exports = {
entry: {
main: './main.js'
},
output: {
path: path.resolve(__dirname + '/dist'),
filename: '[name].bundle.js'
},
resolve: {
extensions: ['.js', '.vue'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': path.resolve(__dirname + '/src'),
}
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader'
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader'
},
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader']
}
]
},
plugins: [
// strip all the warnings from Vue.js source code.
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
// uglify build code
new UglifyJsPlugin({
// this speeds up the build
parallel: true
})
]
}