Skip to content

Commit d0d7e4f

Browse files
comminting to change branch
1 parent fc21a1b commit d0d7e4f

File tree

4 files changed

+24
-42
lines changed

4 files changed

+24
-42
lines changed

lib/renderer/renderer-webpack.js

+8-29
Original file line numberDiff line numberDiff line change
@@ -178,30 +178,6 @@ class Renderer {
178178
},
179179
);
180180
}
181-
this.jsToStringOptions = {
182-
functions: [{
183-
name: "data",
184-
// @ts-ignore
185-
toString: function(script) {
186-
const func = `module.exports = function data() { return ${jsToString(
187-
script(),
188-
)}; };`;
189-
const required = requireFromString(func);
190-
return String(required);
191-
},
192-
} ],
193-
};
194-
}
195-
/**
196-
* @param {Object} oldData
197-
* @param {Object} newData
198-
* @returns {Function}
199-
*/
200-
FixData(oldData, newData) {
201-
const mergedData = Object.assign({}, oldData, this.data, newData);
202-
return function data() {
203-
return mergedData;
204-
};
205181
}
206182
/**
207183
* @param {string} filePath
@@ -213,24 +189,27 @@ class Renderer {
213189
const parsedBundlePath = path.parse(filePath);
214190
const app = `import Vue from "vue";
215191
import App from "${filePath}";
216-
export function createApp (state) {
192+
193+
export function createApp (data) {
217194
const app = new Vue({
218-
render: h => h(App, {props: state})
195+
data,
196+
render: h => h(App)
219197
})
220198
return { app }
221199
}`;
222200

223201
const server = `import { createApp } from "./app"
224202
export default context => {
225203
return new Promise((resolve, reject) => {
226-
const { app } = createApp(context.state);
204+
const { app } = createApp(context);
205+
227206
resolve(app);
228207
});
229208
};`;
230209

231210
const client = `import { createApp } from "./app"
232-
const state = window.__INITIAL_STATE__;
233-
const { app } = createApp(state ? state : {});
211+
const store = window.__INITIAL_STATE__;
212+
const { app } = createApp(store ? store : {});
234213
app.$mount("#app")`;
235214

236215
const parsedFilePath = filePath.replace(this.trueRootPath, "").replace(".vue", "");

package-lock.json

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@
2828
"uglify-js": "^3.3.16",
2929
"vue": "^2.5.16",
3030
"vue-loader": "^15.0.4",
31+
"vue-router": "^3.0.1",
3132
"vue-server-renderer": "^2.5.16",
3233
"vue-template-compiler": "^2.5.16",
3334
"vueify": "^9.4.1",
35+
"vuex": "^3.0.1",
3436
"webpack": "^4.6.0",
3537
"xss": "^0.3.7"
3638
},

tests/example/views/index/index.vue

+4-13
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22
<div>
33
<h1 class="red">{{msg}}</h1>
44
<foo hellodata="component"></foo>
5-
<p>{{bar}}</p>
6-
<div v-html="fakehtml"></div>
5+
<p>{{$root.bar}}</p>
6+
<div v-html="$root.fakehtml"></div>
77
<h1>{{title}}</h1>
88
<p>Welcome to the {{title}} demo. Click a link:</p>
9-
<p>import fooTransitionExpand from '@foo/styles-animation/src/components/foo-transition-expand.vue';</p>
10-
<p>const test = require("foo.vue");</p>
11-
<p>const bar = require("bar.vue");</p>
9+
<p>{{$root.sentence}}</p>
1210
<input v-model="messageOuter" placeholder="edit me">
1311
<button type="button" name="button" v-on:click="hello(messageOuter)">{{messageOuter}}</button>
1412
<message-comp :message="messageOuter"></message-comp>
@@ -18,21 +16,14 @@
1816
</template>
1917

2018
<script>
21-
19+
import axios from "axios";
2220
import foo from "../../components/component.vue";
2321
import messageComp from '../../components/message-comp.vue';
2422
import users from '../../components/users.vue';
2523
import helloMixin from '../../mixins/exampleMixin.js';
2624
import simple from 'simple-vue-component-test/simple.vue';
2725
export default {
2826
props: {
29-
bar: {
30-
type: Boolean
31-
},
32-
fakehtml: {
33-
type: String,
34-
default: ""
35-
},
3627
title: {
3728
type: String,
3829
default: ""

0 commit comments

Comments
 (0)